geforkt von Mirrors/Paper
Fixed not being able to login if the world saved in your player.dat no longer exists. Thanks for the help Rigby and Verrier!
Dieser Commit ist enthalten in:
Ursprung
8f4c36974b
Commit
a98f4f8934
@ -916,8 +916,6 @@ public abstract class Entity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void e(NBTTagCompound nbttagcompound) {
|
public void e(NBTTagCompound nbttagcompound) {
|
||||||
// CraftBukkit - reset world
|
|
||||||
a(((CraftWorld)Bukkit.getServer().getWorld(nbttagcompound.getString("World"))).getHandle());
|
|
||||||
NBTTagList nbttaglist = nbttagcompound.l("Pos");
|
NBTTagList nbttaglist = nbttagcompound.l("Pos");
|
||||||
NBTTagList nbttaglist1 = nbttagcompound.l("Motion");
|
NBTTagList nbttaglist1 = nbttagcompound.l("Motion");
|
||||||
NBTTagList nbttaglist2 = nbttagcompound.l("Rotation");
|
NBTTagList nbttaglist2 = nbttagcompound.l("Rotation");
|
||||||
@ -964,6 +962,11 @@ public abstract class Entity {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
|
|
||||||
|
// CraftBukkit Start - reset world
|
||||||
|
org.bukkit.World world = Bukkit.getServer().getWorld(nbttagcompound.getString("World"));
|
||||||
|
a(world == null ? null : ((CraftWorld) world).getHandle());
|
||||||
|
// CraftBukkit End
|
||||||
}
|
}
|
||||||
|
|
||||||
protected final String af() {
|
protected final String af() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren