Remove unnecessary debug.

This commit is contained in:
sigonasr2 2016-08-05 21:09:08 -05:00
parent 725f7f1a12
commit 9caa25538c
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -192,7 +192,7 @@ public enum MonsterDifficulty {
} }
public List<ItemStack> RandomizeDrops(double dropmult, boolean isBoss, boolean isRanger) { public List<ItemStack> RandomizeDrops(double dropmult, boolean isBoss, boolean isRanger) {
TwosideKeeper.log(ChatColor.AQUA+"->Entering RandomizeDrops()", 1); TwosideKeeper.log(ChatColor.AQUA+"->Entering RandomizeDrops()", 5);
List<ItemStack> droplist = new ArrayList<ItemStack>(); List<ItemStack> droplist = new ArrayList<ItemStack>();
dropmult += 1; //Base dropmult is 1.0. dropmult += 1; //Base dropmult is 1.0.
if (Math.random() < dropmult % 1) if (Math.random() < dropmult % 1)
@ -302,7 +302,7 @@ public enum MonsterDifficulty {
} }
} }
} }
TwosideKeeper.log(" Drop List "+"["+(droplist.size())+"]: "+ChatColor.LIGHT_PURPLE+ChatColor.stripColor(droplist.toString()),1); TwosideKeeper.log(" Drop List "+"["+(droplist.size())+"]: "+ChatColor.LIGHT_PURPLE+ChatColor.stripColor(droplist.toString()),5);
return droplist; return droplist;
} }