Made Spider drops less rare

This commit is contained in:
Ellpeck 2015-12-28 14:45:36 +01:00
parent b1b05a89fe
commit d49d3ad7a9

View file

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