1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-15 11:04:29 +02:00

Do not list "all_unnamed_worlds" as a selectable world.

This commit is contained in:
ElgarL
2013-02-22 13:17:58 +00:00
parent 8960417d56
commit f9b5d74f6d

View File

@@ -745,6 +745,8 @@ public class WorldsHolder {
for (String world : worldsData.keySet()) { for (String world : worldsData.keySet()) {
if (!world.equalsIgnoreCase("all_unnamed_worlds")) {
// Fetch the relevant world object // Fetch the relevant world object
OverloadedWorldHolder data = getWorldData(world); OverloadedWorldHolder data = getWorldData(world);
@@ -780,6 +782,7 @@ public class WorldsHolder {
list.add(data); list.add(data);
} }
} }
}
return list; return list;
} }
} }