mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 04:33:56 -07:00
readd dropped event in InteractWithDoor
This commit is contained in:
@@ -19,9 +19,9 @@
|
||||
+ // Paper start
|
||||
+ java.util.List<ItemStack> getContents();
|
||||
+
|
||||
+ void onOpen(org.bukkit.craftbukkit.entity.CraftHumanEntity who);
|
||||
+ void onOpen(org.bukkit.craftbukkit.entity.CraftHumanEntity player);
|
||||
+
|
||||
+ void onClose(org.bukkit.craftbukkit.entity.CraftHumanEntity who);
|
||||
+ void onClose(org.bukkit.craftbukkit.entity.CraftHumanEntity player);
|
||||
+
|
||||
+ java.util.List<org.bukkit.entity.HumanEntity> getViewers();
|
||||
+
|
||||
@@ -31,6 +31,6 @@
|
||||
+
|
||||
+ org.bukkit.Location getLocation();
|
||||
+
|
||||
+ int MAX_STACK = 99;
|
||||
+ int MAX_STACK = Item.ABSOLUTE_MAX_STACK_SIZE;
|
||||
+ // Paper end
|
||||
}
|
||||
|
Reference in New Issue
Block a user