Replace //set with new command version.

This commit is contained in:
sk89q
2015-10-29 18:20:27 -07:00
parent 86c6de7105
commit 0e200df5be
2 changed files with 2 additions and 14 deletions

View File

@ -77,20 +77,6 @@ public class RegionCommands {
this.worldEdit = worldEdit;
}
@Command(
aliases = { "/set" },
usage = "<block>",
desc = "Set all the blocks inside the selection to a block",
min = 1,
max = 1
)
@CommandPermissions("worldedit.region.set")
@Logging(REGION)
public void set(Player player, LocalSession session, EditSession editSession, Pattern pattern) throws WorldEditException {
int affected = editSession.setBlocks(session.getSelection(player.getWorld()), Patterns.wrap(pattern));
player.print(affected + " block(s) have been changed.");
}
@Command(
aliases = { "/line" },
usage = "<block> [thickness]",