From d49d3ad7a929cf1446d8c3c9f3102ca0fddf7f25 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 28 Dec 2015 14:45:36 +0100 Subject: [PATCH] Made Spider drops less rare --- .../java/ellpeck/actuallyadditions/event/LivingDropEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/ellpeck/actuallyadditions/event/LivingDropEvent.java b/src/main/java/ellpeck/actuallyadditions/event/LivingDropEvent.java index 45fda4450..c4a91c174 100644 --- a/src/main/java/ellpeck/actuallyadditions/event/LivingDropEvent.java +++ b/src/main/java/ellpeck/actuallyadditions/event/LivingDropEvent.java @@ -40,7 +40,7 @@ public class LivingDropEvent{ //Drop Cobwebs from Spiders if(ConfigBoolValues.DO_SPIDER_DROPS.isEnabled() && event.entityLiving instanceof EntitySpider){ - if(Util.RANDOM.nextInt(500) <= 0){ + if(Util.RANDOM.nextInt(80) <= 0){ event.entityLiving.entityDropItem(new ItemStack(Blocks.web, Util.RANDOM.nextInt(2)+1), 0); } }