mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Fix recursive error detection when partial mirroring the main world
This commit is contained in:
parent
269cf85457
commit
1151f1a29c
1 changed files with 2 additions and 2 deletions
|
@ -204,10 +204,10 @@ public class WorldsHolder {
|
|||
mirroredWorlds.add((String)key);
|
||||
|
||||
} else
|
||||
GroupManager.logger.log(Level.WARNING, "Mirroring error with " + (String)key + ". Recursive loop detected!");
|
||||
throw new IllegalStateException("Unknown mirroring format for " + (String)key);
|
||||
|
||||
} else {
|
||||
throw new IllegalStateException("Unknown mirroring format for " + (String)key);
|
||||
GroupManager.logger.log(Level.WARNING, "Mirroring error with " + (String)key + ". Recursive loop detected!");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue