mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
Fixed endermen not loading carried-data properly
This commit is contained in:
parent
2ae6b431b3
commit
2d1d86b77e
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ public class EntityEnderman extends EntityMonster {
|
|||
public void b(NBTTagCompound nbttagcompound) {
|
||||
super.b(nbttagcompound);
|
||||
nbttagcompound.a("carried", (short) this.getCarriedId());
|
||||
nbttagcompound.a("carriedData", (short) this.getCarriedData());
|
||||
nbttagcompound.a("carryingData", (short) this.getCarriedData()); // Craftbukkit - fixed from carriedData
|
||||
}
|
||||
|
||||
public void a(NBTTagCompound nbttagcompound) {
|
||||
|
|
Loading…
Reference in a new issue