From 0d735ec2e8141ae7f35a46981f89b4bca320343f Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 30 Apr 2024 15:24:29 -0700 Subject: [PATCH] Fix a exception being thrown and crashing the server --- gradle.properties | 2 +- .../zontreck/libzontreck/memory/world/DatabaseMigrations.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 1631c86..490c2bb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -53,7 +53,7 @@ mod_name=Zontreck's Library Mod # The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. mod_license=GPLv3 # The mod version. See https://semver.org/ -mod_version=1201.13.043024.1512 +mod_version=1201.13.043024.1524 # The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. # This should match the base package used for the mod sources. # See https://maven.apache.org/guides/mini/guide-naming-conventions.html diff --git a/src/main/java/dev/zontreck/libzontreck/memory/world/DatabaseMigrations.java b/src/main/java/dev/zontreck/libzontreck/memory/world/DatabaseMigrations.java index feb2415..5ff1277 100644 --- a/src/main/java/dev/zontreck/libzontreck/memory/world/DatabaseMigrations.java +++ b/src/main/java/dev/zontreck/libzontreck/memory/world/DatabaseMigrations.java @@ -66,7 +66,7 @@ public class DatabaseMigrations try { DatabaseWrapper.get().executePreparedStatement(pstmt); } catch (SQLException e) { - throw new RuntimeException(e); + LibZontreck.LOGGER.warn("There was a problem executing a migration. The migration is " + pstmt+"\n\nThis does not necessarily mean a failure. If everything seems to work fine, this migration might not have been necessary."); } } @@ -159,6 +159,7 @@ public class DatabaseMigrations Migration lastTableChecked = null; for(Migration m : migrations) { + if(lastTableChecked == null) lastTableChecked = getCurrentTable(m.tableID); else { if(lastTableChecked.tableID != m.tableID) lastTableChecked = getCurrentTable(m.tableID);