Important account register fix

It appears I broke this in a previous update fixing other errors, without realisng this causes massive issues when registering accounts. Whoops.
Here's the fix.
This commit is contained in:
jamix77 2020-01-27 13:58:45 +00:00 committed by Jamix77
parent a5a206653e
commit 5f6ab6fb4a

View file

@ -175,6 +175,7 @@ public class AccountRegister extends SQLEntryHandler<RegistryDetails> {
statement.setString(7,null);
}
statement.setString(7, "2009scape");
statement.executeUpdate();
SQLManager.close(statement.getConnection());
}