aboutsummaryrefslogtreecommitdiffhomepage
path: root/patch-remap/mache-spigotflower/net/minecraft/world/Container.java.patch
blob: 9919e667b7367911de6efd21c0be3e14a064ce25 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
--- a/net/minecraft/world/Container.java
+++ b/net/minecraft/world/Container.java
@@ -6,8 +6,12 @@
 import net.minecraft.world.entity.player.Player;
 import net.minecraft.world.item.Item;
 import net.minecraft.world.item.ItemStack;
+// CraftBukkit start
+import net.minecraft.world.item.crafting.RecipeHolder;
 import net.minecraft.world.level.Level;
 import net.minecraft.world.level.block.entity.BlockEntity;
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
+// CraftBukkit end
 
 public interface Container extends Clearable {
 
@@ -26,9 +30,7 @@
 
     void setItem(int slot, ItemStack stack);
 
-    default int getMaxStackSize() {
-        return 64;
-    }
+    int getMaxStackSize(); // CraftBukkit
 
     void setChanged();
 
@@ -38,11 +40,11 @@
 
     default void stopOpen(Player player) {}
 
-    default boolean canPlaceItem(int i, ItemStack itemstack) {
+    default boolean canPlaceItem(int index, ItemStack stack) {
         return true;
     }
 
-    default boolean canTakeItem(Container container, int i, ItemStack itemstack) {
+    default boolean canTakeItem(Container target, int index, ItemStack stack) {
         return true;
     }
 
@@ -78,14 +80,39 @@
         return false;
     }
 
-    static boolean stillValidBlockEntity(BlockEntity blockentity, Player player) {
-        return stillValidBlockEntity(blockentity, player, 8);
+    static boolean stillValidBlockEntity(BlockEntity blockEntity, Player player) {
+        return stillValidBlockEntity(blockEntity, player, 8);
     }
 
-    static boolean stillValidBlockEntity(BlockEntity blockentity, Player player, int i) {
-        Level level = blockentity.getLevel();
-        BlockPos blockpos = blockentity.getBlockPos();
+    static boolean stillValidBlockEntity(BlockEntity blockEntity, Player player, int maxDistance) {
+        Level world = blockEntity.getLevel();
+        BlockPos blockposition = blockEntity.getBlockPos();
 
-        return level == null ? false : (level.getBlockEntity(blockpos) != blockentity ? false : player.distanceToSqr((double) blockpos.getX() + 0.5D, (double) blockpos.getY() + 0.5D, (double) blockpos.getZ() + 0.5D) <= (double) (i * i));
+        return world == null ? false : (world.getBlockEntity(blockposition) != blockEntity ? false : player.distanceToSqr((double) blockposition.getX() + 0.5D, (double) blockposition.getY() + 0.5D, (double) blockposition.getZ() + 0.5D) <= (double) (maxDistance * maxDistance));
     }
+
+    // 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 RecipeHolder<?> getCurrentRecipe() {
+        return null;
+    }
+
+    default void setCurrentRecipe(RecipeHolder<?> recipe) {
+    }
+
+    int MAX_STACK = 64;
+    // CraftBukkit end
 }