Properly allow searches by name without UUID

This commit is contained in:
t00thpick1 2015-01-01 23:56:17 -05:00
parent 9426f44cdd
commit eddadcc179

View File

@ -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();