Paper/nms-patches/InventorySubcontainer.patch

59 lines
1.6 KiB
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/InventorySubcontainer.java
+++ b/net/minecraft/server/InventorySubcontainer.java
@@ -3,6 +3,12 @@
import com.google.common.collect.Lists;
import java.util.List;
+// CraftBukkit start
+import java.util.List;
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
+import org.bukkit.entity.HumanEntity;
+// CraftBukkit end
+
public class InventorySubcontainer implements IInventory {
private String a;
@@ -11,7 +17,42 @@
2015-02-26 23:41:06 +01:00
private List<IInventoryListener> d;
private boolean e;
2015-02-26 23:41:06 +01:00
+ // CraftBukkit start - add fields and methods
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
+ private int maxStack = MAX_STACK;
+ protected org.bukkit.inventory.InventoryHolder bukkitOwner;
+
+ public ItemStack[] getContents() {
+ return this.items;
+ }
+
+ public void onOpen(CraftHumanEntity who) {
+ transaction.add(who);
+ }
2015-02-26 23:41:06 +01:00
+
+ public void onClose(CraftHumanEntity who) {
+ transaction.remove(who);
+ }
+
+ public List<HumanEntity> getViewers() {
+ return transaction;
+ }
+
+ public void setMaxStackSize(int i) {
+ maxStack = i;
+ }
+
+ public org.bukkit.inventory.InventoryHolder getOwner() {
+ return bukkitOwner;
+ }
2015-02-26 23:41:06 +01:00
+
public InventorySubcontainer(String s, boolean flag, int i) {
+ this(s, flag, i, null);
+ }
+
2015-02-26 23:41:06 +01:00
+ public InventorySubcontainer(String s, boolean flag, int i, org.bukkit.inventory.InventoryHolder owner) { // Added argument
+ this.bukkitOwner = owner;
+ // CraftBukkit end
this.a = s;
this.e = flag;
this.b = i;