1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 09:35:26 +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 6b8196c0cb
commit 48d4f047fb

View File

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