Refactor to install new loot tables.

This commit is contained in:
2023-08-07 10:16:30 -04:00
parent 8a5924eeee
commit 985b327b69
3 changed files with 28 additions and 193 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ public class SimulateBootyCmd extends AbstractDevCmd {
else
output += "NORMAL TABLE [" + entry.bootyType + "] " + entry.genTable + ": " + entry.dropChance * dropRate + newline;
if (hotZoneRan == false && ZoneManager.inHotZone(mob.getLoc()) && LootManager.generalItemTables.containsKey(entry.genTable + 1)) {
if (hotZoneRan == false && ZoneManager.inHotZone(mob.getLoc()) && LootManager._genTables.containsKey(entry.genTable + 1)) {
output += "HOTZONE TABLE [" + entry.bootyType + "] " + (entry.genTable + 1) + ": " + entry.dropChance * dropRate + newline;
hotZoneRan = true;
}