diff --git a/src/main/java/dev/heliosares/auxprotect/database/SQLManager.java b/src/main/java/dev/heliosares/auxprotect/database/SQLManager.java index 8332b90..450acb8 100644 --- a/src/main/java/dev/heliosares/auxprotect/database/SQLManager.java +++ b/src/main/java/dev/heliosares/auxprotect/database/SQLManager.java @@ -228,7 +228,7 @@ public class SQLManager extends ConnectionPool { } for (Table table : Table.values()) { - if (table.hasAPEntries()) { + if (table.hasAPEntries() && table.exists(plugin)) { execute(table.getSQLCreateString(plugin), connection); } }