Comment out unfinished code

This commit is contained in:
Jesse Boyd 2018-07-27 13:37:25 +10:00
parent 371e1bb27e
commit 3ed2e57f3a
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 10 additions and 10 deletions

View File

@ -321,16 +321,16 @@ public class AnvilCommands {
if (result != null) player.print(BBC.getPrefix() + BBC.VISITOR_BLOCK.format(result.getTotal()));
}
@Command(
aliases = {"debugfixroads", },
desc = "debug - do not use"
)
@CommandPermissions("worldedit.anvil.debugfixroads")
public void debugfixroads(Player player, String folder) throws WorldEditException {
DebugFixP2Roads filter = new DebugFixP2Roads();
DebugFixP2Roads result = runWithWorld(player, folder, filter, true, true);
if (result != null) player.print(BBC.getPrefix() + BBC.VISITOR_BLOCK.format(result.getTotal()));
}
// @Command(
// aliases = {"debugfixroads", },
// desc = "debug - do not use"
// )
// @CommandPermissions("worldedit.anvil.debugfixroads")
// public void debugfixroads(Player player, String folder) throws WorldEditException {
// DebugFixP2Roads filter = new DebugFixP2Roads();
// DebugFixP2Roads result = runWithWorld(player, folder, filter, true, true);
// if (result != null) player.print(BBC.getPrefix() + BBC.VISITOR_BLOCK.format(result.getTotal()));
// }
@Command(
aliases = {"replaceallpattern", "reap", "repallpat"},