Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 13:30:06 +01:00
Fixed food data not persisting appropriately.
Dieser Commit ist enthalten in:
Ursprung
e85c99289c
Commit
f8d36cd09c
@ -99,7 +99,6 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
|||||||
this.itemInWorldManager = new ItemInWorldManager((WorldServer) world);
|
this.itemInWorldManager = new ItemInWorldManager((WorldServer) world);
|
||||||
this.itemInWorldManager.player = this;
|
this.itemInWorldManager.player = this;
|
||||||
this.itemInWorldManager.a(oldMode);
|
this.itemInWorldManager.a(oldMode);
|
||||||
this.foodData = new FoodMetaData();
|
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -251,6 +251,7 @@ public class ServerConfigurationManager {
|
|||||||
entityplayer.health = 20;
|
entityplayer.health = 20;
|
||||||
entityplayer.fireTicks = 0;
|
entityplayer.fireTicks = 0;
|
||||||
entityplayer.fallDistance = 0;
|
entityplayer.fallDistance = 0;
|
||||||
|
entityplayer.foodData = new FoodMetaData();
|
||||||
} else {
|
} else {
|
||||||
location.setWorld(this.server.getWorldServer(i).getWorld());
|
location.setWorld(this.server.getWorldServer(i).getWorld());
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren