summaryrefslogtreecommitdiff
path: root/src/net/eathena/playerhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-01 17:26:27 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-01 19:28:09 +0300
commit43713ab4bb834e898c0d2c3289555d22fe08132e (patch)
tree8ae0f663ad44cb5d754babff17d25e09e8b6a2bf /src/net/eathena/playerhandler.cpp
parent10b5b99e5e7e5f332c077a2d261df8f02f111c4f (diff)
downloadplus-43713ab4bb834e898c0d2c3289555d22fe08132e.tar.gz
plus-43713ab4bb834e898c0d2c3289555d22fe08132e.tar.bz2
plus-43713ab4bb834e898c0d2c3289555d22fe08132e.tar.xz
plus-43713ab4bb834e898c0d2c3289555d22fe08132e.zip
Move VIT stat from net enum into attributes.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r--src/net/eathena/playerhandler.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp
index 75996016b..ac035826d 100644
--- a/src/net/eathena/playerhandler.cpp
+++ b/src/net/eathena/playerhandler.cpp
@@ -305,11 +305,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg)
msg.readUInt8("agi cost");
val = msg.readUInt8("vit");
- PlayerInfo::setStatBase(VIT, val);
+ PlayerInfo::setStatBase(Attributes::VIT, val);
if (statusWindow)
- statusWindow->setPointsNeeded(VIT, msg.readUInt8("vit cost"));
+ {
+ statusWindow->setPointsNeeded(Attributes::VIT,
+ msg.readUInt8("vit cost"));
+ }
else
+ {
msg.readUInt8("vit cost");
+ }
val = msg.readUInt8("int");
PlayerInfo::setStatBase(Attributes::INT, val);