File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
java/de/bluecolored/bluemap/bukkit Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,11 @@ public void unregisterAllListeners() {
7878
7979 @ Override
8080 public UUID getUUIDForWorld (File worldFolder ) throws IOException {
81+ //if it is a dimension folder
82+ if (!new File (worldFolder , "level.dat" ).exists ()) {
83+ worldFolder = worldFolder .getParentFile ();
84+ }
85+
8186 final File normalizedWorldFolder = worldFolder .getCanonicalFile ();
8287
8388 Future <UUID > futureUUID ;
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ maps: [
134134 {
135135 id: "end"
136136 name: "End"
137- world: "world_the_end"
137+ world: "world_the_end/DIM1 "
138138
139139 # We dont want a blue sky in the end
140140 skyColor: "#080010"
@@ -150,7 +150,7 @@ maps: [
150150 {
151151 id: "nether"
152152 name: "Nether"
153- world: "world_nether"
153+ world: "world_nether/DIM-1 "
154154
155155 skyColor: "#290000"
156156
You can’t perform that action at this time.
0 commit comments