Fix dimension names missing namespace for multiplayer folders
This commit is contained in:
+3
-1
@@ -259,7 +259,9 @@ public class ClientLevelWrapper implements IClientLevelWrapper
|
||||
#if MC_VER <= MC_1_21_10
|
||||
return this.level.dimension().location().toString();
|
||||
#else
|
||||
return this.level.dimension().identifier().getPath();
|
||||
String namespace = this.level.dimension().identifier().getNamespace();
|
||||
String path = this.level.dimension().identifier().getPath();
|
||||
return namespace + "@@" + path;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
+1
-1
Submodule coreSubProjects updated: aa6d69385b...963a8dc53f
Reference in New Issue
Block a user