Paper/nms-patches/TileEntityShulkerBox.patch

55 lines
1.4 KiB
Diff
Raw Normal View History

2016-11-17 02:41:03 +01:00
--- a/net/minecraft/server/TileEntityShulkerBox.java
+++ b/net/minecraft/server/TileEntityShulkerBox.java
2018-07-15 02:00:00 +02:00
@@ -4,6 +4,10 @@
2016-11-17 02:41:03 +01:00
import java.util.List;
2018-07-15 02:00:00 +02:00
import java.util.stream.IntStream;
2016-11-17 02:41:03 +01:00
import javax.annotation.Nullable;
+// CraftBukkit start
+import org.bukkit.craftbukkit.entity.CraftHumanEntity;
+import org.bukkit.entity.HumanEntity;
+// CraftBukkit end
2018-07-15 02:00:00 +02:00
public class TileEntityShulkerBox extends TileEntityLootable implements IWorldInventory, ITickable {
2016-11-17 02:41:03 +01:00
2018-07-15 02:00:00 +02:00
@@ -18,6 +22,31 @@
private boolean o;
2016-11-17 02:41:03 +01:00
private boolean p;
+ // CraftBukkit start - add fields and methods
+ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
+ private int maxStack = MAX_STACK;
+
+ public List<ItemStack> getContents() {
2018-07-15 02:00:00 +02:00
+ return this.e;
2016-11-17 02:41:03 +01:00
+ }
+
+ 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 size) {
+ maxStack = size;
+ }
+ // CraftBukkit end
+
2018-07-15 02:00:00 +02:00
public TileEntityShulkerBox(@Nullable EnumColor enumcolor) {
2018-08-26 04:00:00 +02:00
super(TileEntityTypes.SHULKER_BOX);
2018-07-15 02:00:00 +02:00
this.e = NonNullList.a(27, ItemStack.a);
2018-12-06 00:00:00 +01:00
@@ -143,7 +172,7 @@
2016-11-17 02:41:03 +01:00
}
public int getMaxStackSize() {
- return 64;
+ return maxStack; // CraftBukkit
}
public boolean c(int i, int j) {