Fix inconsistency with server/client wrapper dim names

This commit is contained in:
James Seibel
2025-12-15 09:49:08 -06:00
parent 7d0785a5fa
commit 16afada6e9
@@ -187,7 +187,9 @@ public class ServerLevelWrapper implements IServerLevelWrapper
#if MC_VER <= MC_1_21_10 #if MC_VER <= MC_1_21_10
return this.level.dimension().location().toString(); return this.level.dimension().location().toString();
#else #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 #endif
} }