Package me.taylorkelly.bigbrother.rollback

Examples of me.taylorkelly.bigbrother.rollback.RollbackInterpreter.interpret()


    @Override
    public boolean onCommand(CommandSender player, Command arg1, String arg2, String[] split) {
        if(BBPermissions.rollback((Player) player)) {
            if (split.length > 1) {
                RollbackInterpreter interpreter = new RollbackInterpreter((Player) player, split, plugin.getServer(), plugin.worldManager, plugin);
                Boolean passed = interpreter.interpret();
                if (passed != null) {
                    if (passed) {
                        interpreter.send();
                    } else {
                        player.sendMessage(BigBrother.premessage + ChatColor.RED + "Warning: " + ChatColor.WHITE + "You are rolling back without a time or radius argument.");
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.