world cooldowns stringed database name fix

This commit is contained in:
RonanCraft
2022-06-08 15:29:34 -04:00
parent 277765e5eb
commit 2993b595db

View File

@@ -123,7 +123,7 @@ public abstract class SQLite {
}
private String getCreateTable(String table) {
String str = "CREATE TABLE IF NOT EXISTS " + table + " (";
String str = "CREATE TABLE IF NOT EXISTS `" + table + "` (";
Enum<?>[] columns = getColumns(type);
for (Enum<?> c : columns) {
String _name = getColumnName(type, c);