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

View File

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