Possible Player.dat fixes to address issues with switching between Vanilla and Bukkit or vice versa.

This commit is contained in:
Rigby
2011-06-16 04:24:31 +01:00
committed by EvilSeph
parent 7aadc3d666
commit 0c56bfb62f
2 changed files with 18 additions and 2 deletions

View File

@@ -341,7 +341,13 @@ public abstract class EntityHuman extends EntityLiving {
this.a(true, true, false);
}
this.spawnWorld = nbttagcompound.getString("SpawnWorld"); // CraftBukkit
// CraftBukkit - Start
this.spawnWorld = nbttagcompound.getString("SpawnWorld");
if (this.spawnWorld == "") {
CraftServer server = ((WorldServer) world).getServer();
this.spawnWorld = server.getWorlds().get(0).getName();
}
// CraftBukkit - End
if (nbttagcompound.hasKey("SpawnX") && nbttagcompound.hasKey("SpawnY") && nbttagcompound.hasKey("SpawnZ")) {
this.b = new ChunkCoordinates(nbttagcompound.e("SpawnX"), nbttagcompound.e("SpawnY"), nbttagcompound.e("SpawnZ"));