Removing sorting of gameworlds for debug purposes

https://github.com/BentoBoxWorld/BentoBox/issues/608
This commit is contained in:
tastybento 2019-03-13 08:51:29 -07:00
parent 60b075c668
commit ed7e301b82

View File

@ -38,7 +38,7 @@ public class BentoBoxVersionCommand extends CompositeCommand {
user.sendMessage("commands.bentobox.version.plugin-version", TextVariables.VERSION, getPlugin().getDescription().getVersion());
user.sendMessage("commands.bentobox.version.loaded-game-worlds");
getIWM().getOverWorldNames().entrySet().stream().sorted()
getIWM().getOverWorldNames().entrySet().stream()
.forEach(e -> user.sendMessage("commands.bentobox.version.game-worlds", TextVariables.NAME, e.getKey(), "[addon]", e.getValue()));
user.sendMessage("commands.bentobox.version.loaded-addons");