mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-06 14:46:32 +02:00
Fix global mirroring of non main worlds.
This commit is contained in:
@@ -418,8 +418,14 @@ public class WorldsHolder {
|
||||
// Find this worlds data
|
||||
if (worldsData.containsKey(worldNameLowered))
|
||||
return getUpdatedWorldData(worldNameLowered);
|
||||
|
||||
// Oddly no data source was found for this world so return the default.
|
||||
|
||||
// Oddly no data source was found for this world so attempt to return the global mirror.
|
||||
if (worldsData.containsKey("all_unnamed_worlds")) {
|
||||
GroupManager.logger.finest("Requested world " + worldName + " not found or badly mirrored. Returning all_unnamed_worlds world...");
|
||||
return getUpdatedWorldData("all_unnamed_worlds");
|
||||
}
|
||||
|
||||
// Oddly no data source or global mirror was found for this world so return the default.
|
||||
GroupManager.logger.finest("Requested world " + worldName + " not found or badly mirrored. Returning default world...");
|
||||
return getDefaultWorld();
|
||||
}
|
||||
|
Reference in New Issue
Block a user