Преглед на файлове

Made skulls drops more rare.

TfT_02 преди 12 години
родител
ревизия
e0bba80f55
променени са 1 файла, в които са добавени 4 реда и са изтрити 5 реда
  1. 4 5
      src/main/java/com/gmail/nossr50/skills/gathering/Fishing.java

+ 4 - 5
src/main/java/com/gmail/nossr50/skills/gathering/Fishing.java

@@ -1,6 +1,5 @@
 package com.gmail.nossr50.skills.gathering;
 package com.gmail.nossr50.skills.gathering;
 
 
-import java.lang.reflect.Method;
 import java.util.ArrayList;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.List;
 import java.util.Map;
 import java.util.Map;
@@ -264,7 +263,7 @@ public class Fishing {
                 break;
                 break;
 
 
             case CREEPER:
             case CREEPER:
-                if (DROP_NUMBER > 95) {
+                if (DROP_NUMBER > 98) {
                     Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 4));
                     Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 4));
                 } else {
                 } else {
                     Misc.dropItem(location, new ItemStack(Material.SULPHUR));
                     Misc.dropItem(location, new ItemStack(Material.SULPHUR));
@@ -341,7 +340,7 @@ public class Fishing {
 
 
             case SKELETON:
             case SKELETON:
             	if (((Skeleton)le).getSkeletonType() == SkeletonType.WITHER) {
             	if (((Skeleton)le).getSkeletonType() == SkeletonType.WITHER) {
-                    if (DROP_NUMBER > 95) {
+                    if (DROP_NUMBER > 98) {
                         Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 1));
                         Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 1));
                     } else if (DROP_NUMBER > 50) {
                     } else if (DROP_NUMBER > 50) {
                         Misc.dropItem(location, new ItemStack(Material.BONE));
                         Misc.dropItem(location, new ItemStack(Material.BONE));
@@ -350,7 +349,7 @@ public class Fishing {
                     Misc.randomDropItems(location, new ItemStack(Material.COAL), 50, 2);
                     Misc.randomDropItems(location, new ItemStack(Material.COAL), 50, 2);
                     }
                     }
                 } else {
                 } else {
-                    if (DROP_NUMBER > 95) {
+                    if (DROP_NUMBER > 98) {
                         Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM));
                         Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM));
                     } else if (DROP_NUMBER > 50) {
                     } else if (DROP_NUMBER > 50) {
                         Misc.dropItem(location, new ItemStack(Material.BONE));
                         Misc.dropItem(location, new ItemStack(Material.BONE));
@@ -418,7 +417,7 @@ public class Fishing {
                 break;
                 break;
 
 
             case ZOMBIE:
             case ZOMBIE:
-                if (DROP_NUMBER > 95) {
+                if (DROP_NUMBER > 98) {
                     Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 2));
                     Misc.dropItem(location, new ItemStack(Material.SKULL_ITEM, 1, (short) 2));
                 } else {
                 } else {
                     Misc.dropItem(location, new ItemStack(Material.ROTTEN_FLESH));
                     Misc.dropItem(location, new ItemStack(Material.ROTTEN_FLESH));