data load fixes

This commit is contained in:
2024-01-03 20:39:18 -06:00
parent e330f190fe
commit c92316f03e
3 changed files with 19 additions and 12 deletions
@@ -920,7 +920,7 @@ public class dbBuildingHandler extends dbHandlerBase {
public void LOAD_MESH_BOUNDING_BOXES() {
try (Connection connection = DbManager.getConnection();
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM `static_mesh_triangles`")) {
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM `static_mesh_bounding_boxes`")) {
ResultSet rs = preparedStatement.executeQuery();
BuildingManager.mesh_bounding_boxes = new HashMap<>();