mirror of
https://github.com/RonanPlugins/BetterRTP.git
synced 2026-02-16 02:21:06 +00:00
world cooldowns stringed database name fix
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user