Minor cleanup

This commit is contained in:
Simon 2018-11-27 09:30:03 -05:00
parent 6a9cfb3acb
commit 950f6b6b4b

View File

@ -198,11 +198,9 @@ public class GameServer implements Runnable {
} }
//Process each worlds //Process each worlds
int updatedWorlds = 0;
for (World world : gameUniverse.getWorlds()) { for (World world : gameUniverse.getWorlds()) {
if (world.shouldUpdate()) { if (world.shouldUpdate()) {
world.update(); world.update();
updatedWorlds++;
} }
} }
@ -212,9 +210,6 @@ public class GameServer implements Runnable {
} }
socketServer.tick(); socketServer.tick();
// LogManager.LOGGER.info("Processed " + gameUniverse.getWorldCount() + " worlds (" + updatedWorlds +
// " updated)");
} }
void load() { void load() {