diff --git a/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/data/storage/MySQLDataHandler.kt b/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/data/storage/MySQLDataHandler.kt index 476a4aa3..1b72eae7 100644 --- a/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/data/storage/MySQLDataHandler.kt +++ b/eco-core/core-plugin/src/main/kotlin/com/willfp/eco/internal/spigot/data/storage/MySQLDataHandler.kt @@ -117,7 +117,10 @@ class MySQLDataHandler( row } else { transaction { - table.insert { it[id] = uuid } + table.insert { + it[id] = uuid + it[dataColumn] = "{}" + } } table.select { table.id eq uuid }.limit(1).singleOrNull() }