diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-01 17:16:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-01 19:28:09 +0300 |
commit | 97ceb0fc66be86d09b2bc42b7580d3976cbddd80 (patch) | |
tree | 0432a5b8e1fe591d8be5ee2fcd227c8d1f683139 /src/net/eathena/playerhandler.cpp | |
parent | 1b9ea6d00c6923abe1da37833e7772d5a5e34b6d (diff) | |
download | plus-97ceb0fc66be86d09b2bc42b7580d3976cbddd80.tar.gz plus-97ceb0fc66be86d09b2bc42b7580d3976cbddd80.tar.bz2 plus-97ceb0fc66be86d09b2bc42b7580d3976cbddd80.tar.xz plus-97ceb0fc66be86d09b2bc42b7580d3976cbddd80.zip |
Move DEX stat from net enum into attributes.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 54876f14b..1bdf1a39e 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -319,11 +319,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) msg.readUInt8("int cost"); val = msg.readUInt8("dex"); - PlayerInfo::setStatBase(DEX, val); + PlayerInfo::setStatBase(Attributes::DEX, val); if (statusWindow) - statusWindow->setPointsNeeded(DEX, msg.readUInt8("dex cost")); + { + statusWindow->setPointsNeeded(Attributes::DEX, + msg.readUInt8("dex cost")); + } else + { msg.readUInt8("dex cost"); + } val = msg.readUInt8("luk"); PlayerInfo::setStatBase(Attributes::LUK, val); |