Paper/nms-patches/InventorySubcontainer.patch

65 lines
1.8 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
2018-07-15 02:00:00 +02:00
@@ -5,6 +5,13 @@
import java.util.List;
2018-07-15 02:00:00 +02:00
import javax.annotation.Nullable;
+// CraftBukkit start
+import java.util.List;
2016-02-29 22:32:46 +01:00
+import org.bukkit.Location;
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
+import org.bukkit.entity.HumanEntity;
+// CraftBukkit end
+
2018-07-15 02:00:00 +02:00
public class InventorySubcontainer implements IInventory, AutoRecipeOutput {
2018-07-15 02:00:00 +02:00
private final IChatBaseComponent a;
@@ -13,7 +20,47 @@
2015-02-26 23:41:06 +01:00
private List<IInventoryListener> d;
2018-07-15 02:00:00 +02:00
private IChatBaseComponent 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;
+
2016-11-17 02:41:03 +01:00
+ public List<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;
+ }
2016-02-29 22:32:46 +01:00
+
+ @Override
+ public Location getLocation() {
+ return null;
+ }
2015-02-26 23:41:06 +01:00
+
2018-07-15 02:00:00 +02:00
public InventorySubcontainer(IChatBaseComponent ichatbasecomponent, int i) {
+ this(ichatbasecomponent, i, null);
+ }
+
2018-07-15 02:00:00 +02:00
+ public InventorySubcontainer(IChatBaseComponent ichatbasecomponent, int i, org.bukkit.inventory.InventoryHolder owner) {
+ this.bukkitOwner = owner;
2016-11-17 02:41:03 +01:00
+ // CraftBukkit end
2018-07-15 02:00:00 +02:00
this.a = ichatbasecomponent;
this.b = i;
2018-07-15 02:00:00 +02:00
this.items = NonNullList.a(i, ItemStack.a);