Skip to content

Commit

Permalink
Reworld world saving debug logging, to avoid confusing McMyAdmin for #…
Browse files Browse the repository at this point in the history
…815

Signed-off-by: Ross Allan <rallanpcl@gmail.com>
  • Loading branch information
LunNova committed Jun 29, 2013
1 parent f3c641c commit 2f30c97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/nallar/patched/server/PatchMinecraftServer.java
Expand Up @@ -618,7 +618,7 @@ public void saveEverything(boolean force) {
try {
Log.info("Saving all player data.");
this.serverConfigManager.saveAllPlayerData();
Log.info("Done saving player data, saving worlds.");
Log.info("Done saving player data, now saving " + DimensionManager.getWorlds().length + " worlds.");
if (worlds == null) {
for (WorldServer world : this.worldServers) {
world.canNotSave = false;
Expand All @@ -640,7 +640,7 @@ public void saveEverything(boolean force) {
world.theChunkProviderServer.saveChunks(true, null);
}
}
Log.info("Done saving worlds, flushing world data to disk.");
Log.info("World save completed, flushing world data to disk.");
if (worlds == null) {
for (WorldServer world : this.worldServers) {
world.flush();
Expand Down

0 comments on commit 2f30c97

Please sign in to comment.