From 01142b67c61a57eafd10ce338daac42bbf123491 Mon Sep 17 00:00:00 2001 From: TfT_02 Date: Sun, 23 Dec 2012 00:00:29 +0100 Subject: [PATCH] Changed skull drop rates to 3% --- .../java/com/gmail/nossr50/skills/gathering/Fishing.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/gmail/nossr50/skills/gathering/Fishing.java b/src/main/java/com/gmail/nossr50/skills/gathering/Fishing.java index 46410e2a5..9c5596ce0 100755 --- a/src/main/java/com/gmail/nossr50/skills/gathering/Fishing.java +++ b/src/main/java/com/gmail/nossr50/skills/gathering/Fishing.java @@ -263,7 +263,7 @@ public class Fishing { break; case CREEPER: - if (DROP_NUMBER > 98) { + if (DROP_NUMBER > 97) { Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 4)); } else { Misc.dropItem(location, new ItemStack(Material.SULPHUR)); @@ -340,7 +340,7 @@ public class Fishing { case SKELETON: if (((Skeleton)le).getSkeletonType() == SkeletonType.WITHER) { - if (DROP_NUMBER > 98) { + if (DROP_NUMBER > 97) { Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 1)); } else if (DROP_NUMBER > 50) { Misc.dropItem(location, new ItemStack(Material.BONE)); @@ -349,7 +349,7 @@ public class Fishing { Misc.randomDropItems(location, new ItemStack(Material.COAL), 50, 2); } } else { - if (DROP_NUMBER > 98) { + if (DROP_NUMBER > 97) { Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM)); } else if (DROP_NUMBER > 50) { Misc.dropItem(location, new ItemStack(Material.BONE)); @@ -417,7 +417,7 @@ public class Fishing { break; case ZOMBIE: - if (DROP_NUMBER > 98) { + if (DROP_NUMBER > 97) { Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 2)); } else { Misc.dropItem(location, new ItemStack(Material.ROTTEN_FLESH));