diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-12 17:07:09 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-12 17:07:09 +0300 |
commit | 566ae30ff94caf6c92fc7d64f021b567933f8a60 (patch) | |
tree | eae43b8899444f99a97fdd00bc5df8a117c316e9 /src/net/eathena/charserverhandler.cpp | |
parent | 247418a3ec0b50479c7bac80322202b01527ae61 (diff) | |
download | plus-566ae30ff94caf6c92fc7d64f021b567933f8a60.tar.gz plus-566ae30ff94caf6c92fc7d64f021b567933f8a60.tar.bz2 plus-566ae30ff94caf6c92fc7d64f021b567933f8a60.tar.xz plus-566ae30ff94caf6c92fc7d64f021b567933f8a60.zip |
fix code style.
Diffstat (limited to 'src/net/eathena/charserverhandler.cpp')
-rw-r--r-- | src/net/eathena/charserverhandler.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp index 2f6898303..cea59955c 100644 --- a/src/net/eathena/charserverhandler.cpp +++ b/src/net/eathena/charserverhandler.cpp @@ -401,25 +401,25 @@ void CharServerHandler::processPincodeStatus(Net::MessageIn &msg) const uint16_t state = static_cast<uint16_t>(msg.readInt16("state")); switch (state) { - case 0: // pin ok + case 0: // pin ok break; - case 1: // ask for pin + case 1: // ask for pin break; - case 2: // create new pin - case 4: // create new pin? + case 2: // create new pin + case 4: // create new pin? { mNeedCreatePin = true; break; } - case 3: // pin must be changed + case 3: // pin must be changed break; - case 5: // client show error? + case 5: // client show error? break; - case 6: // Unable to use your KSSN number + case 6: // Unable to use your KSSN number break; - case 7: // char select window shows a button + case 7: // char select window shows a button break; - case 8: // pincode was incorrect + case 8: // pincode was incorrect break; default: logger->log("processPincodeStatus: unknown pin state: %d", |