Browse Source

cleanup

master
FatBoy-DOTC 1 year ago
parent
commit
66b047d091
  1. 5
      src/engine/loot/LootManager.java

5
src/engine/loot/LootManager.java

@ -80,9 +80,7 @@ public class LootManager { @@ -80,9 +80,7 @@ public class LootManager {
private static void RunBootySet(ArrayList<BootySetEntry> entries, Mob mob, float multiplier, boolean inHotzone, boolean fromDeath) {
if (fromDeath) {
DropEquipment(mob, multiplier);
return;
}
int hotzoneTable = 0;
} else {
for (BootySetEntry bse : entries) {
switch (bse.bootyType) {
case "GOLD":
@ -103,6 +101,7 @@ public class LootManager { @@ -103,6 +101,7 @@ public class LootManager {
}
}
}
}
public static MobLoot getGenTableItem(int genTableID, Mob mob) {
if (genTableID == 0 || mob == null || generalItemTables.containsKey(genTableID) == false) {
return null;

Loading…
Cancel
Save