1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

Update ButcherAndroidListener.java

Fixed bug with emerald drop from vindicators when killed by Butcher Android
This commit is contained in:
Kub94ekCZ 2023-10-25 16:43:48 +02:00 committed by GitHub
parent 7a8780bbae
commit 82b89673d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,5 +88,9 @@ public class ButcherAndroidListener implements Listener {
if (entityType == EntityType.BLAZE) {
drops.add(new ItemStack(Material.BLAZE_ROD, 1 + random.nextInt(1)));
}
if (entityType == EntityType.VINDICATOR) {
drops.add(new Itemstack(Material.EMERALD, 1 + random.nextInt(2)));
}
}
}