mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 02:04:44 +02:00
Don't throw errors about dropped columns
This commit is contained in:
@ -842,7 +842,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
|
||||
return true;
|
||||
}
|
||||
catch (SQLException ex) {
|
||||
if (!sql.equalsIgnoreCase("ALTER TABLE `" + tablePrefix + "users` DROP COLUMN `party` ;")) {
|
||||
if (!sql.contains("DROP COLUMN")) {
|
||||
printErrors(ex);
|
||||
}
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user