Fixed logging back in on non-default worlds (Yes really)

This commit is contained in:
Dinnerbone 2011-02-24 15:46:26 +00:00
parent c97fa40d2b
commit 13f55ce0c8

View File

@ -849,8 +849,13 @@ public abstract class Entity {
String worldName = nbttagcompound.i("World");
for (WorldServer world: ((WorldServer) this.world).getServer().getServer().worlds) {
if (world.q.j.equals(worldName)) {
if ((world.q.j.equals(worldName)) && (world != this.world)) {
this.world = world;
if (this instanceof EntityHuman) {
EntityPlayer player = (EntityPlayer)this;
player.c = new ItemInWorldManager(world);
player.c.a = player;
}
break;
}
}