diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-02-22 00:38:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-02-22 00:38:26 +0300 |
commit | 972bbd781838c9150f87aad7c96c6bbd74a68e06 (patch) | |
tree | cc839b1ca698ec32c0dd3fc7c8d8e0ba09e8e923 /src/gui/charselectdialog.cpp | |
parent | f6f2a8072c517ee47e77979db9dbb9ecb3430cb5 (diff) | |
download | plus-972bbd781838c9150f87aad7c96c6bbd74a68e06.tar.gz plus-972bbd781838c9150f87aad7c96c6bbd74a68e06.tar.bz2 plus-972bbd781838c9150f87aad7c96c6bbd74a68e06.tar.xz plus-972bbd781838c9150f87aad7c96c6bbd74a68e06.zip |
Fix change password issue with empty players list.
Diffstat (limited to 'src/gui/charselectdialog.cpp')
-rw-r--r-- | src/gui/charselectdialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/charselectdialog.cpp b/src/gui/charselectdialog.cpp index ffa88cb75..bc2c42dc7 100644 --- a/src/gui/charselectdialog.cpp +++ b/src/gui/charselectdialog.cpp @@ -319,7 +319,6 @@ CharSelectDialog::CharSelectDialog(LoginData *const data): CharSelectDialog::~CharSelectDialog() { - Net::getCharHandler()->clear(); } void CharSelectDialog::action(const gcn::ActionEvent &event) @@ -351,6 +350,7 @@ void CharSelectDialog::action(const gcn::ActionEvent &event) if (eventId == "use" && mCharacterEntries[selected]->getCharacter()) { attemptCharacterSelect(selected); +// Net::getCharHandler()->clear(); return; } else if (eventId == "new" && @@ -371,6 +371,7 @@ void CharSelectDialog::action(const gcn::ActionEvent &event) } if (eventId == "switch") { + Net::getCharHandler()->clear(); close(); } else if (eventId == "change_password") @@ -383,6 +384,7 @@ void CharSelectDialog::action(const gcn::ActionEvent &event) } else if (eventId == "unregister") { + Net::getCharHandler()->clear(); Client::setState(STATE_UNREGISTER); } else if (eventId == "try delete character") |