diff --git a/src/engine/loot/LootManager.java b/src/engine/loot/LootManager.java index cb8b41b7..080373c9 100644 --- a/src/engine/loot/LootManager.java +++ b/src/engine/loot/LootManager.java @@ -100,7 +100,7 @@ public class LootManager { } } } - public static MobLoot getGenTableItem(int genTableID, Mob mob, Boolean isHotzone) { + public static MobLoot getGenTableItem(int genTableID, Mob mob) { if (genTableID == 0 || mob == null || generalItemTables.containsKey(genTableID) == false) { return null; } @@ -222,7 +222,7 @@ public class LootManager { return; } //iterate the booty tables and add items to mob inventory - MobLoot toAdd = getGenTableItem(tableID, mob,false); + MobLoot toAdd = getGenTableItem(tableID, mob); if (toAdd != null) { if(toAdd.getPrefix() == null && toAdd.getSuffix() == null){ toAdd.setIsID(true);