This commit is contained in:
TomTom 2024-07-01 10:07:40 +02:00
parent d04eae11ac
commit 416db6867f

View File

@ -428,14 +428,18 @@ class H2DataHandler : DataHandler {
}
override fun addUser(uuid: UUID, name: String) {
try {
dataSource.connection.use { connection ->
connection.prepareStatement("INSERT IGNORE INTO `axminions_users`(`uuid`, `name`, `island_slots`) VALUES (?,?,?);").use { statement ->
connection.prepareStatement("INSERT INTO `axminions_users`(`uuid`, `name`, `island_slots`) VALUES (?,?,?);").use { statement ->
statement.setObject(1, uuid)
statement.setString(2, name)
statement.setInt(3, 0)
statement.executeUpdate()
}
}
} catch (exception: Exception) {
}
}
override fun addExtraSlot(user: UUID, amount: Int) {