diff options
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); |