mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
65 lines
1.7 KiB
Diff
65 lines
1.7 KiB
Diff
--- a/net/minecraft/server/InventorySubcontainer.java
|
|
+++ b/net/minecraft/server/InventorySubcontainer.java
|
|
@@ -4,6 +4,13 @@
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
|
|
+// CraftBukkit start
|
|
+import java.util.List;
|
|
+import org.bukkit.Location;
|
|
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
+import org.bukkit.entity.HumanEntity;
|
|
+// CraftBukkit end
|
|
+
|
|
public class InventorySubcontainer implements IInventory {
|
|
|
|
private String a;
|
|
@@ -12,7 +19,47 @@
|
|
private List<IInventoryListener> d;
|
|
private boolean e;
|
|
|
|
+ // 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 List<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 void setMaxStackSize(int i) {
|
|
+ maxStack = i;
|
|
+ }
|
|
+
|
|
+ public org.bukkit.inventory.InventoryHolder getOwner() {
|
|
+ return bukkitOwner;
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public Location getLocation() {
|
|
+ return null;
|
|
+ }
|
|
+
|
|
public InventorySubcontainer(String s, boolean flag, int i) {
|
|
+ this(s, flag, i, null);
|
|
+ }
|
|
+
|
|
+ public InventorySubcontainer(String s, boolean flag, int i, org.bukkit.inventory.InventoryHolder owner) {
|
|
+ this.bukkitOwner = owner;
|
|
+ // CraftBukkit end
|
|
this.a = s;
|
|
this.e = flag;
|
|
this.b = i;
|