diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2010-12-28 00:56:53 +0100 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2010-12-29 07:38:39 +0100 |
commit | 411b54e993ea997e18be18fadd26ceab00c00fa3 (patch) | |
tree | 6f95ec02b917e391de95ae8e496e71a314e96b37 /src/net/tmwa | |
parent | 780bcbc2ea75603f2eef7369a6f7b5ddfc5888b5 (diff) | |
download | mana-411b54e993ea997e18be18fadd26ceab00c00fa3.tar.gz mana-411b54e993ea997e18be18fadd26ceab00c00fa3.tar.bz2 mana-411b54e993ea997e18be18fadd26ceab00c00fa3.tar.xz mana-411b54e993ea997e18be18fadd26ceab00c00fa3.zip |
Fixed potential flaw for the number of characters slots on tAthena.
Was happening when logging to the dev manaserv server
and then to TMW-eA.
The client is still crashing after selecting the characters after
relogging but that's not introduced with this patch anyway.
Reviewed-by: Crush.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/loginhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/loginhandler.cpp b/src/net/tmwa/loginhandler.cpp index e58acb4d..00b7b145 100644 --- a/src/net/tmwa/loginhandler.cpp +++ b/src/net/tmwa/loginhandler.cpp @@ -235,6 +235,12 @@ void LoginHandler::getRegistrationDetails() void LoginHandler::loginAccount(LoginData *loginData) { + // Since we're attempting to use the tAthena protocol, + // let's reset the character slots to the good value, + // in case we just logged out a Manaserv server + // with a different config. + loginData->resetCharacterSlots(); + sendLoginRegister(loginData->username, loginData->password); } |