From f5936e243423152e2189706caf56e44eaebf82f6 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Wed, 10 Jul 2013 09:48:38 +1000 Subject: [PATCH] Adjusted how common scythes are damaged --- src/minecraft/biomesoplenty/items/ItemBOPScythe.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/minecraft/biomesoplenty/items/ItemBOPScythe.java b/src/minecraft/biomesoplenty/items/ItemBOPScythe.java index fd6c5d2a5..ef8487c1d 100644 --- a/src/minecraft/biomesoplenty/items/ItemBOPScythe.java +++ b/src/minecraft/biomesoplenty/items/ItemBOPScythe.java @@ -118,7 +118,7 @@ public class ItemBOPScythe extends Item if (block != null) { - if (world.rand.nextInt(3) == 0) + if (world.rand.nextInt(6) == 0) { stack.damageItem(1, entity); } @@ -174,7 +174,7 @@ public class ItemBOPScythe extends Item { if (block.isLeaves(world, x + aX, y + aY, z + aZ)) { - if (world.rand.nextInt(6) == 0) + if (world.rand.nextInt(5) == 0) { stack.damageItem(1, entity); } @@ -203,7 +203,7 @@ public class ItemBOPScythe extends Item if (block != null) { - if (world.rand.nextInt(4) == 0) + if (world.rand.nextInt(7) == 0) { stack.damageItem(1, entity); }