Skip to content

Commit 77f07c8

Browse files
committed
Call drop events for dropping items
1 parent c7b2270 commit 77f07c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paper-server/patches/sources/net/minecraft/world/entity/LivingEntity.java.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
+ // Paper start - Extend dropItem API
138138
+ @Nullable
139139
+ public final ItemEntity drop(ItemStack stack, boolean randomizeMotion, boolean includeThrower) {
140-
+ return this.drop(stack, randomizeMotion, includeThrower, false, null);
140+
+ return this.drop(stack, randomizeMotion, includeThrower, true, null);
141141
+ }
142142
+
143143
+ @Nullable

0 commit comments

Comments
 (0)