3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

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

Dieser Commit ist enthalten in:
Dinnerbone 2011-02-24 15:46:26 +00:00
Ursprung c97fa40d2b
Commit 13f55ce0c8

Datei anzeigen

@ -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;
}
}