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 6e7d4f9a6..0899e9508 100644
--- a/src/net/tmwa/playerhandler.cpp
+++ b/src/net/tmwa/playerhandler.cpp
@@ -366,11 +366,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg)
msg.readUInt8("str cost");
val = msg.readUInt8("agi");
- PlayerInfo::setStatBase(AGI, val);
+ PlayerInfo::setStatBase(Attributes::AGI, val);
if (statusWindow)
- statusWindow->setPointsNeeded(AGI, msg.readUInt8("agi cost"));
+ {
+ statusWindow->setPointsNeeded(Attributes::AGI,
+ msg.readUInt8("agi cost"));
+ }
else
+ {
msg.readUInt8("agi cost");
+ }
val = msg.readUInt8("vit");
PlayerInfo::setStatBase(Attributes::VIT, val);