Revert "Add more metrics to chunk loading (for testing)"

This reverts commit 926d2a3dbc.
This commit is contained in:
Mike Primm 2014-02-03 22:27:04 -06:00
parent 926d2a3dbc
commit 376ec447ed
2 changed files with 4 additions and 79 deletions

View file

@ -955,11 +955,7 @@ public class DynmapPlugin extends JavaPlugin implements DynmapAPI {
else {
dsender = new BukkitCommandSender(sender);
}
boolean rslt = core.processCommand(dsender, cmd.getName(), commandLabel, args);
if (commandLabel.equals("dynmap") && (args.length > 0) && (args[0].equals("stats"))) {
NewMapChunkCache.dumpStats(sender);
}
return rslt;
return core.processCommand(dsender, cmd.getName(), commandLabel, args);
}