Conflicts:
	.gitignore
This commit is contained in:
Light2
2013-12-14 21:42:46 +01:00
76 changed files with 10607 additions and 14 deletions
+1 -1
View File
@@ -361,7 +361,7 @@ public class CharacterService implements INetworkDispatch {
PreparedStatement ps2 = databaseConnection.preparedStatement("SELECT \"accountId\" FROM temp_reserved_char_names WHERE \"accountId\"!=? AND LOWER(\"firstName\")=?");
ps2.setLong(1, accountId);
ps2.setString(2, firstName);
ps2.setString(2, firstName.toLowerCase());
ResultSet resultSet2 = ps2.executeQuery();
boolean isReserved = resultSet2.next();
resultSet2.getStatement().close();