Package com.forgeessentials.util

Examples of com.forgeessentials.util.BackupArea


    }

    @Override
    public void processCommandPlayer(EntityPlayer player, String[] args)
    {
        BackupArea back = PlayerInfo.getPlayerInfo(player.username).getNextRedo();

        if (back == null)
        {
            OutputHandler.chatError(player, "Nothing to redo!");
            return;
View Full Code Here


                }
            }

            if (radius != -1 && effectPosition != null)
            {
                BackupArea back = new BackupArea();
                // For some reason, player.posX is out.

                TaskRegistry.registerTask(new TickTaskTopManipulator(player, back, effectPosition, radius, manipulateMode));
            }
            ChatUtils.sendMessage(player, "Working on " + name + ".");
View Full Code Here

    }

    @Override
    public void processCommandPlayer(EntityPlayer player, String[] args)
    {
        BackupArea back = PlayerInfo.getPlayerInfo(player.username).getNextUndo();

        if (back == null)
        {
            OutputHandler.chatError(player, "Nothing to undo.");
            return;
View Full Code Here

                {
                    OutputHandler.chatError(player, "Invalid selection detected. Please check your selection.");
                    return;
                }
                Selection sel = info.getSelection();
                BackupArea back = new BackupArea();

                PermQueryPlayerArea query = new PermQueryPlayerArea(player, getCommandPerm(), sel, false);
                PermResult result = APIRegistry.perms.checkPermResult(query);

                switch (result)
View Full Code Here

                error(player, String.format("%d is not a valid block ID!", secondID));
            }
            else
            {
                Selection sel = info.getSelection();
                BackupArea back = new BackupArea();

                PermQueryPlayerArea query = new PermQueryPlayerArea(player, getCommandPerm(), sel, false);
                PermResult result = APIRegistry.perms.checkPermResult(query);

                switch (result)
View Full Code Here

TOP

Related Classes of com.forgeessentials.util.BackupArea

Copyright © 2018 www.massapicom. 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.