This commit is contained in:
2024-06-15 19:50:05 -05:00
parent 4f535ef5fe
commit 2ca9b77cfb
+6 -3
View File
@@ -9,6 +9,7 @@
package engine.loot;
import engine.gameManager.LootManager;
import org.pmw.tinylog.Logger;
import java.sql.ResultSet;
import java.sql.SQLException;
@@ -45,14 +46,16 @@ public class ItemTableEntry {
}
public static Integer getRandomItem(int itemTable) {
int id = 0;
List<ItemTableEntry> itemTableEntryList;
itemTableEntryList = LootManager._itemTables.get(itemTable);
if(itemTableEntryList != null){
return (itemTableEntryList.get(ThreadLocalRandom.current().nextInt(0,itemTableEntryList.size() - 1))).cacheID;
id = itemTableEntryList.get(ThreadLocalRandom.current().nextInt(0,itemTableEntryList.size() - 1)).cacheID;
}
return 0;
Logger.error("Rolling Item Table: " + itemTable);
return id;
}
}