readd dropped event in InteractWithDoor

This commit is contained in:
Lulu13022002
2024-12-16 17:29:46 +01:00
parent 9c973e84bc
commit 783b3b70e6
33 changed files with 175 additions and 172 deletions

View File

@@ -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
}