Store owning Horse in horse inventory. Fixes BUKKIT-4586

This commit is contained in:
Wesley Wolfe
2013-07-25 18:04:09 -05:00
parent 0a9758ae54
commit 5bfd599e9f
2 changed files with 8 additions and 3 deletions

View File

@@ -328,7 +328,7 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener {
public void cH() { // CraftBukkit - private -> public
InventoryHorseChest inventoryhorsechest = this.inventoryChest;
this.inventoryChest = new InventoryHorseChest("HorseChest", this.cG());
this.inventoryChest = new InventoryHorseChest("HorseChest", this.cG(), this); // CraftBukkit - add this horse
this.inventoryChest.a(this.getLocalizedName());
if (inventoryhorsechest != null) {
inventoryhorsechest.b(this);