2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/InventorySubcontainer.java
|
|
|
|
+++ b/net/minecraft/server/InventorySubcontainer.java
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -4,6 +4,13 @@
|
2016-11-17 02:41:03 +01:00
|
|
|
import java.util.Iterator;
|
2014-11-25 22:32:16 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import java.util.List;
|
2016-02-29 22:32:46 +01:00
|
|
|
+import org.bukkit.Location;
|
2014-11-25 22:32:16 +01:00
|
|
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
+import org.bukkit.entity.HumanEntity;
|
|
|
|
+// CraftBukkit end
|
|
|
|
+
|
|
|
|
public class InventorySubcontainer implements IInventory {
|
|
|
|
|
|
|
|
private String a;
|
2016-05-10 13:47:39 +02:00
|
|
|
@@ -12,7 +19,47 @@
|
2015-02-26 23:41:06 +01:00
|
|
|
private List<IInventoryListener> d;
|
2014-11-25 22:32:16 +01:00
|
|
|
private boolean e;
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2014-11-25 22:32:16 +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;
|
|
|
|
+
|
2016-11-17 02:41:03 +01:00
|
|
|
+ public List<ItemStack> getContents() {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ return this.items;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void onOpen(CraftHumanEntity who) {
|
|
|
|
+ transaction.add(who);
|
|
|
|
+ }
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +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;
|
|
|
|
+ }
|
2016-02-29 22:32:46 +01:00
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public Location getLocation() {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
2015-02-26 23:41:06 +01:00
|
|
|
+
|
2014-11-25 22:32:16 +01:00
|
|
|
public InventorySubcontainer(String s, boolean flag, int i) {
|
|
|
|
+ this(s, flag, i, null);
|
|
|
|
+ }
|
|
|
|
+
|
2016-11-17 02:41:03 +01:00
|
|
|
+ public InventorySubcontainer(String s, boolean flag, int i, org.bukkit.inventory.InventoryHolder owner) {
|
2014-11-25 22:32:16 +01:00
|
|
|
+ this.bukkitOwner = owner;
|
2016-11-17 02:41:03 +01:00
|
|
|
+ // CraftBukkit end
|
2014-11-25 22:32:16 +01:00
|
|
|
this.a = s;
|
|
|
|
this.e = flag;
|
|
|
|
this.b = i;
|