summaryrefslogtreecommitdiffstats
path: root/nms-patches/IInventory.patch
blob: 4dd0f897ee9da1f731152da8d0e7b072c613b064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
--- a/net/minecraft/server/IInventory.java
+++ b/net/minecraft/server/IInventory.java
@@ -1,5 +1,7 @@
 package net.minecraft.server;
 
+import org.bukkit.craftbukkit.entity.CraftHumanEntity; // CraftBukkit
+
 public interface IInventory extends INamableTileEntity {
 
     int getSize();
@@ -41,4 +43,29 @@
     default int U_() {
         return 0;
     }
+
+    // CraftBukkit start
+    java.util.List<ItemStack> getContents();
+
+    void onOpen(CraftHumanEntity who);
+
+    void onClose(CraftHumanEntity who);
+
+    java.util.List<org.bukkit.entity.HumanEntity> getViewers();
+
+    org.bukkit.inventory.InventoryHolder getOwner();
+
+    void setMaxStackSize(int size);
+
+    org.bukkit.Location getLocation();
+
+    default IRecipe getCurrentRecipe() {
+        return null;
+    }
+
+    default void setCurrentRecipe(IRecipe recipe) {
+    }
+
+    int MAX_STACK = 64;
+    // CraftBukkit end
 }