forked from MagicBane/Server
server side race/cass restrictions
This commit is contained in:
@@ -97,7 +97,7 @@ public class dbItemBaseHandler extends dbHandlerBase {
|
|||||||
Logger.info("read: " + recordsRead + " cached: " + ItemBase.getUUIDCache().size());
|
Logger.info("read: " + recordsRead + " cached: " + ItemBase.getUUIDCache().size());
|
||||||
}
|
}
|
||||||
public void LOAD_ALL_ITEM_REQUIREMENTS(){
|
public void LOAD_ALL_ITEM_REQUIREMENTS(){
|
||||||
for(ItemBase itemBase : ItemBase._itemBaseByUUID.values())
|
for(ItemBase itemBase : ItemBase._itemBaseByUUID.values()){
|
||||||
try (Connection connection = DbManager.getConnection();
|
try (Connection connection = DbManager.getConnection();
|
||||||
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_item_requirements WHERE 'itemID' = ?")) {
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_item_requirements WHERE 'itemID' = ?")) {
|
||||||
preparedStatement.setInt(1, itemBase.getUUID());
|
preparedStatement.setInt(1, itemBase.getUUID());
|
||||||
@@ -109,6 +109,8 @@ public void LOAD_ALL_ITEM_REQUIREMENTS(){
|
|||||||
Logger.error("No Entry In static_item_requirements for item UUID: " + itemBase.getUUID());
|
Logger.error("No Entry In static_item_requirements for item UUID: " + itemBase.getUUID());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
public HashMap<Integer, ArrayList<Integer>> LOAD_RUNES_FOR_NPC_AND_MOBS() {
|
public HashMap<Integer, ArrayList<Integer>> LOAD_RUNES_FOR_NPC_AND_MOBS() {
|
||||||
|
|
||||||
HashMap<Integer, ArrayList<Integer>> runeSets = new HashMap<>();
|
HashMap<Integer, ArrayList<Integer>> runeSets = new HashMap<>();
|
||||||
|
|||||||
Reference in New Issue
Block a user