Record sort ASC is required.

This commit is contained in:
2023-08-08 11:12:32 -04:00
parent 31122cf6d3
commit 35dc1239f8
+1 -1
View File
@@ -95,7 +95,7 @@ public class dbPowerHandler extends dbHandlerBase {
int recordsRead = 0; int recordsRead = 0;
try (Connection connection = DbManager.getConnection(); try (Connection connection = DbManager.getConnection();
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_npc_mobbase_powers")) { PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_npc_mobbase_powers ORDER BY `id ASC;")) {
ResultSet rs = preparedStatement.executeQuery(); ResultSet rs = preparedStatement.executeQuery();