mirror of
https://github.com/barkeser2002/CatServer.git
synced 2026-09-25 06:40:05 +03:00
22 lines
515 B
Diff
22 lines
515 B
Diff
--- ../src-base/minecraft/net/minecraft/world/storage/SaveHandlerMP.java
|
|
+++ ../src-work/minecraft/net/minecraft/world/storage/SaveHandlerMP.java
|
|
@@ -1,6 +1,8 @@
|
|
package net.minecraft.world.storage;
|
|
|
|
import java.io.File;
|
|
+import java.util.UUID;
|
|
+
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.world.MinecraftException;
|
|
import net.minecraft.world.WorldProvider;
|
|
@@ -57,4 +59,9 @@
|
|
{
|
|
return null;
|
|
}
|
|
+
|
|
+ @Override
|
|
+ public UUID getUUID() {
|
|
+ return null;
|
|
+ }
|
|
}
|