1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-11 09:05:01 +02:00

Fix recursive error detection when partial mirroring the main world

This commit is contained in:
ElgarL
2012-11-20 14:55:06 +00:00
parent 7d0056b154
commit 3254a1a2a0

View File

@@ -204,10 +204,10 @@ public class WorldsHolder {
mirroredWorlds.add((String)key); mirroredWorlds.add((String)key);
} else } else
GroupManager.logger.log(Level.WARNING, "Mirroring error with " + (String)key + ". Recursive loop detected!"); throw new IllegalStateException("Unknown mirroring format for " + (String)key);
} else { } else {
throw new IllegalStateException("Unknown mirroring format for " + (String)key); GroupManager.logger.log(Level.WARNING, "Mirroring error with " + (String)key + ". Recursive loop detected!");
} }
} }