2012-10-25 05:53:23 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
import java.util.List;
|
|
|
|
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
import org.bukkit.entity.HumanEntity;
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
public class ContainerAnvilInventory extends InventorySubcontainer { // CraftBukkit - public
|
|
|
|
|
|
|
|
final ContainerAnvil a;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
|
|
|
public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
|
|
|
|
public org.bukkit.entity.Player player;
|
|
|
|
private int maxStack = MAX_STACK;
|
|
|
|
|
|
|
|
public ItemStack[] getContents() {
|
|
|
|
return this.items;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onOpen(CraftHumanEntity who) {
|
|
|
|
transaction.add(who);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onClose(CraftHumanEntity who) {
|
|
|
|
transaction.remove(who);
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<HumanEntity> getViewers() {
|
|
|
|
return transaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
public org.bukkit.inventory.InventoryHolder getOwner() {
|
|
|
|
return this.player;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMaxStackSize(int size) {
|
|
|
|
maxStack = size;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
ContainerAnvilInventory(ContainerAnvil containeranvil, String s, boolean flag, int i) {
|
|
|
|
super(s, flag, i);
|
2012-10-25 05:53:23 +02:00
|
|
|
this.a = containeranvil;
|
|
|
|
this.setMaxStackSize(1); // CraftBukkit
|
|
|
|
}
|
|
|
|
|
2014-01-23 19:15:53 +01:00
|
|
|
// CraftBukkit start - override inherited maxStack from InventorySubcontainer
|
|
|
|
public int getMaxStackSize() {
|
|
|
|
return maxStack;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public void update() {
|
|
|
|
super.update();
|
|
|
|
this.a.a((IInventory) this);
|
|
|
|
}
|
|
|
|
}
|