You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
64 lines
1.6 KiB
--- ../src-base/minecraft/net/minecraft/inventory/InventoryEnderChest.java |
|
+++ ../src-work/minecraft/net/minecraft/inventory/InventoryEnderChest.java |
|
@@ -6,9 +6,61 @@ |
|
import net.minecraft.nbt.NBTTagList; |
|
import net.minecraft.tileentity.TileEntityEnderChest; |
|
|
|
+// CraftBukkit start |
|
+import java.util.List; |
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity; |
|
+import org.bukkit.entity.HumanEntity; |
|
+// CraftBukkit end |
|
+ |
|
+ |
|
public class InventoryEnderChest extends InventoryBasic |
|
{ |
|
private TileEntityEnderChest associatedChest; |
|
+ |
|
+ // 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.inventoryContents; |
|
+ } |
|
+ |
|
+ 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; |
|
+ } |
|
+ |
|
+ /** |
|
+ * Returns the maximum stack size for a inventory slot. Seems to always be 64, possibly will be extended. *Isn't |
|
+ * this more of a set than a get?* |
|
+ */ |
|
+ public int getInventoryStackLimit() |
|
+ { |
|
+ return maxStack; |
|
+ } |
|
+ // CraftBukkit end |
|
private static final String __OBFID = "CL_00001759"; |
|
|
|
public InventoryEnderChest()
|
|
|