summaryrefslogtreecommitdiff
path: root/src/net/tmwa/playerhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/playerhandler.cpp')
-rw-r--r--src/net/tmwa/playerhandler.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp
index 217d7aff8..5ef1439fe 100644
--- a/src/net/tmwa/playerhandler.cpp
+++ b/src/net/tmwa/playerhandler.cpp
@@ -387,11 +387,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);