mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Fix casing
This commit is contained in:
parent
7d65b9422a
commit
a38d1176cb
@ -737,7 +737,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
|
||||
+ "JOIN " + tablePrefix + "experience e ON (u.id = e.user_id) "
|
||||
+ "JOIN " + tablePrefix + "cooldowns c ON (u.id = c.user_id) "
|
||||
+ "JOIN " + tablePrefix + "huds h ON (u.id = h.user_id) "
|
||||
+ "WHERE u.UUID = ?");
|
||||
+ "WHERE u.uuid = ?");
|
||||
statement.setString(1, uuid);
|
||||
|
||||
resultSet = statement.executeQuery();
|
||||
@ -752,7 +752,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
|
||||
statement = connection.prepareStatement(
|
||||
"UPDATE `" + tablePrefix + "users` "
|
||||
+ "SET user = ? "
|
||||
+ "WHERE UUID = ?");
|
||||
+ "WHERE uuid = ?");
|
||||
statement.setString(1, playerName);
|
||||
statement.setString(2, uuid);
|
||||
statement.executeUpdate();
|
||||
|
Loading…
Reference in New Issue
Block a user