mirror of
https://github.com/songoda/UltimateStacker.git
synced 2024-11-15 22:55:24 +01:00
Clear drops even if no items are being dropped.
This commit is contained in:
parent
48d329b2fe
commit
05c015e7b5
@ -35,6 +35,9 @@ public class DropUtils {
|
||||
if (drop.getCommand() != null)
|
||||
commands.add(drop.getCommand());
|
||||
}
|
||||
|
||||
event.getDrops().clear();
|
||||
|
||||
if (!items.isEmpty())
|
||||
dropItems(items, event);
|
||||
else if (!commands.isEmpty())
|
||||
@ -42,7 +45,6 @@ public class DropUtils {
|
||||
}
|
||||
|
||||
private static void dropItems(List<ItemStack> items, EntityDeathEvent event) {
|
||||
event.getDrops().clear();
|
||||
for (ItemStack item : items)
|
||||
event.getDrops().add(item);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user