Updated CraftHumanEntity to refresh the inventory on death, should fix odd behavior around that.

This commit is contained in:
Erik Broes 2011-01-17 01:55:18 +01:00
parent 74d746b6c5
commit 0c492912de

View File

@ -6,6 +6,7 @@ import org.bukkit.entity.HumanEntity;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.PlayerInventory;
import org.bukkit.craftbukkit.inventory.CraftInventoryPlayer;
import org.bukkit.craftbukkit.inventory.CraftItemStack;
import org.bukkit.craftbukkit.CraftServer;
public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
@ -30,13 +31,14 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
public void setHandle(final EntityPlayer entity) {
super.setHandle((EntityPlayer)entity);
this.entity = entity;
this.inventory = new CraftInventoryPlayer( entity.an );
}
public PlayerInventory getInventory() {
public CraftInventoryPlayer getInventory() {
return inventory;
}
public ItemStack getItemInHand() {
public CraftItemStack getItemInHand() {
return getInventory().getItemInHand();
}