Remove server_queue table

This commit is contained in:
TN
2025-08-03 19:57:10 +07:00
parent 265afb6b15
commit 41adae8278

View File

@@ -2377,7 +2377,7 @@ public class Character extends AbstractCharacterObject {
ps.executeUpdate(); ps.executeUpdate();
} }
String[] toDel = {"famelog", "inventoryitems", "keymap", "queststatus", "savedlocations", "trocklocations", "skillmacros", "skills", "eventstats", "server_queue"}; String[] toDel = {"famelog", "inventoryitems", "keymap", "queststatus", "savedlocations", "trocklocations", "skillmacros", "skills", "eventstats" };
for (String s : toDel) { for (String s : toDel) {
Character.deleteWhereCharacterId(con, "DELETE FROM `" + s + "` WHERE characterid = ?", cid); Character.deleteWhereCharacterId(con, "DELETE FROM `" + s + "` WHERE characterid = ?", cid);
} }