diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-01 17:39:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-01 19:28:09 +0300 |
commit | b35357cfcd58ac26d2f9d008a2db5b931cccb428 (patch) | |
tree | b69b029464f65eb43a8cb4c90f5bf84f08ac1f59 /src/net/eathena | |
parent | 43713ab4bb834e898c0d2c3289555d22fe08132e (diff) | |
download | manaverse-b35357cfcd58ac26d2f9d008a2db5b931cccb428.tar.gz manaverse-b35357cfcd58ac26d2f9d008a2db5b931cccb428.tar.bz2 manaverse-b35357cfcd58ac26d2f9d008a2db5b931cccb428.tar.xz manaverse-b35357cfcd58ac26d2f9d008a2db5b931cccb428.zip |
Move AGI stat from net enum into attributes.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/attrs.h | 3 | ||||
-rw-r--r-- | src/net/eathena/generalhandler.cpp | 2 | ||||
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 9 |
3 files changed, 9 insertions, 5 deletions
diff --git a/src/net/eathena/attrs.h b/src/net/eathena/attrs.h index 9053886a8..77eeb5efd 100644 --- a/src/net/eathena/attrs.h +++ b/src/net/eathena/attrs.h @@ -29,8 +29,7 @@ namespace EAthena { JOB = 0xa, - STR = 0xd, - AGI + STR = 0xd }; } // namespace EAthena diff --git a/src/net/eathena/generalhandler.cpp b/src/net/eathena/generalhandler.cpp index 268cd0f7a..f94594933 100644 --- a/src/net/eathena/generalhandler.cpp +++ b/src/net/eathena/generalhandler.cpp @@ -347,7 +347,7 @@ void GeneralHandler::gameStarted() const statusWindow->clearAttributes(); statusWindow->addAttribute(STR, _("Strength"), "str", true); - statusWindow->addAttribute(AGI, _("Agility"), "agi", true); + statusWindow->addAttribute(Attributes::AGI, _("Agility"), "agi", true); statusWindow->addAttribute(Attributes::VIT, _("Vitality"), "vit", true); statusWindow->addAttribute(Attributes::INT, _("Intelligence"), "int", true); diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index ac035826d..8e3b8f910 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -298,11 +298,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) msg.readUInt8("str need"); 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); |