updated naming convention of variables to conform to client data

This commit is contained in:
2023-08-05 22:38:33 -05:00
parent 0337ac7758
commit 2b4b79e339
+2 -2
View File
@@ -160,9 +160,9 @@ public enum LootManager {
//gets the 1-320 roll for this mob //gets the 1-320 roll for this mob
int roll2 = TableRoll(mob.level, inHotzone); int itemTableRoll = TableRoll(mob.level, inHotzone);
ItemTableRow tableRow = itemTables.get(itemTableId).getRowForRange(roll2); ItemTableRow tableRow = itemTables.get(itemTableId).getRowForRange(itemTableRoll);
if (tableRow == null) if (tableRow == null)
return null; return null;