mirror of
https://github.com/barkeser2002/CatServer.git
synced 2026-09-25 17:46:04 +03:00
21 lines
540 B
Diff
21 lines
540 B
Diff
--- ../src-base/minecraft/net/minecraftforge/common/WorldSpecificSaveHandler.java
|
|
+++ ../src-work/minecraft/net/minecraftforge/common/WorldSpecificSaveHandler.java
|
|
@@ -21,6 +21,7 @@
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
+import java.util.UUID;
|
|
|
|
import net.minecraft.world.gen.structure.template.TemplateManager;
|
|
import org.apache.logging.log4j.Level;
|
|
@@ -106,4 +107,9 @@
|
|
return parent.getStructureTemplateManager();
|
|
}
|
|
|
|
+ @Override
|
|
+ public UUID getUUID() {
|
|
+ return this.getUUID();
|
|
+ }
|
|
+
|
|
}
|