SQL bugfix

This commit is contained in:
2024-03-16 07:44:16 -04:00
parent 131592090f
commit 13bf6e6f5a
+1 -1
View File
@@ -64,7 +64,7 @@ public class PowerPrereq {
public static void getAllPowerPrereqs(HashMap<String, PowersBase> powers) { public static void getAllPowerPrereqs(HashMap<String, PowersBase> powers) {
try (Connection connection = DbManager.getConnection(); try (Connection connection = DbManager.getConnection();
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_power_powercastprereq\"")) { PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_power_powercastprereq;")) {
ResultSet rs = preparedStatement.executeQuery(); ResultSet rs = preparedStatement.executeQuery();