diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-01 17:44:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-01 19:28:09 +0300 |
commit | 1d6c226f2aae2410f9785709aefd88f1a17e6bca (patch) | |
tree | b5d1d89f8c0418c3c0a95875285ac4c9350692b8 /src/net/tmwa/playerhandler.cpp | |
parent | b35357cfcd58ac26d2f9d008a2db5b931cccb428 (diff) | |
download | plus-1d6c226f2aae2410f9785709aefd88f1a17e6bca.tar.gz plus-1d6c226f2aae2410f9785709aefd88f1a17e6bca.tar.bz2 plus-1d6c226f2aae2410f9785709aefd88f1a17e6bca.tar.xz plus-1d6c226f2aae2410f9785709aefd88f1a17e6bca.zip |
Move STR stat from net enum into attributes.
Diffstat (limited to 'src/net/tmwa/playerhandler.cpp')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 0899e9508..89ba976a9 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -161,7 +161,7 @@ void PlayerHandler::emote(const uint8_t emoteId) const void PlayerHandler::increaseAttribute(const int attr) const { - if (attr >= STR && attr <= Attributes::LUK) + if (attr >= Attributes::STR && attr <= Attributes::LUK) { createOutPacket(CMSG_STAT_UPDATE_REQUEST); outMsg.writeInt16(static_cast<int16_t>(attr)); @@ -359,11 +359,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) msg.readInt16("char points")); unsigned int val = msg.readUInt8("str"); - PlayerInfo::setStatBase(STR, val); + PlayerInfo::setStatBase(Attributes::STR, val); if (statusWindow) - statusWindow->setPointsNeeded(STR, msg.readUInt8("str cost")); + { + statusWindow->setPointsNeeded(Attributes::STR, + msg.readUInt8("str cost")); + } else + { msg.readUInt8("str cost"); + } val = msg.readUInt8("agi"); PlayerInfo::setStatBase(Attributes::AGI, val); |