mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-24 18:01:26 +02:00
Properly allow searches by name without UUID
This commit is contained in:
@ -1587,7 +1587,7 @@ public final class SQLDatabaseManager implements DatabaseManager {
|
||||
|
||||
try {
|
||||
statement = connection.prepareStatement("SELECT id, user FROM " + tablePrefix + "users WHERE uuid = ? OR (uuid IS NULL AND user = ?)");
|
||||
statement.setString(1, uuid.toString());
|
||||
statement.setString(1, uuid == null ? null : uuid.toString());
|
||||
statement.setString(2, playerName);
|
||||
resultSet = statement.executeQuery();
|
||||
|
||||
|
Reference in New Issue
Block a user