diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-17 02:33:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-17 02:33:41 +0300 |
commit | 1be5a1cd679a5476e1ad3339c01a8b7237b84aec (patch) | |
tree | 8fcbe25cd0444185f66e3d22ae31000aaa28173a /src/net/tmwa | |
parent | e91a8c39e38cddb085320ae390cf985a73eaee5c (diff) | |
download | plus-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.tar.gz plus-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.tar.bz2 plus-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.tar.xz plus-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.zip |
Remove default parameter from PlayerInfo::setStatMod.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 30 | ||||
-rw-r--r-- | src/net/tmwa/playerrecv.cpp | 20 |
2 files changed, 37 insertions, 13 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index 21311a2d1..a069457ba 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -214,7 +214,7 @@ void PlayerHandler::setViewEquipment(const bool allow A_UNUSED) const #define setStatComplex(stat) \ PlayerInfo::setStatBase(stat, base, notify); \ if (mod != NoStat) \ - PlayerInfo::setStatMod(stat, mod) + PlayerInfo::setStatMod(stat, mod, Notify_true) void PlayerHandler::setStat(Net::MessageIn &msg, const int type, @@ -229,7 +229,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, PlayerInfo::setStatBase(Attributes::PLAYER_WALK_SPEED, base, Notify_true); - PlayerInfo::setStatMod(Attributes::PLAYER_WALK_SPEED, 0); + PlayerInfo::setStatMod(Attributes::PLAYER_WALK_SPEED, + 0, + Notify_true); break; case Sp::BASEEXP: PlayerInfo::setAttribute(Attributes::PLAYER_EXP, @@ -404,7 +406,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, PlayerInfo::updateAttrs(); break; case Sp::ATK2: - PlayerInfo::setStatMod(Attributes::PLAYER_ATK, base); + PlayerInfo::setStatMod(Attributes::PLAYER_ATK, + base, + Notify_true); PlayerInfo::updateAttrs(); break; case Sp::MATK1: @@ -413,7 +417,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, Notify_true); break; case Sp::MATK2: - PlayerInfo::setStatMod(Attributes::PLAYER_MATK, base); + PlayerInfo::setStatMod(Attributes::PLAYER_MATK, + base, + Notify_true); break; case Sp::DEF1: PlayerInfo::setStatBase(Attributes::PLAYER_DEF, @@ -421,7 +427,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, Notify_true); break; case Sp::DEF2: - PlayerInfo::setStatMod(Attributes::PLAYER_DEF, base); + PlayerInfo::setStatMod(Attributes::PLAYER_DEF, + base, + Notify_true); break; case Sp::MDEF1: PlayerInfo::setStatBase(Attributes::PLAYER_MDEF, @@ -429,7 +437,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, Notify_true); break; case Sp::MDEF2: - PlayerInfo::setStatMod(Attributes::PLAYER_MDEF, base); + PlayerInfo::setStatMod(Attributes::PLAYER_MDEF, + base, + Notify_true); break; case Sp::HIT: PlayerInfo::setStatBase(Attributes::PLAYER_HIT, @@ -442,7 +452,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, Notify_true); break; case Sp::FLEE2: - PlayerInfo::setStatMod(Attributes::PLAYER_FLEE, base); + PlayerInfo::setStatMod(Attributes::PLAYER_FLEE, + base, + Notify_true); break; case Sp::CRITICAL: PlayerInfo::setStatBase(Attributes::PLAYER_CRIT, @@ -454,7 +466,9 @@ void PlayerHandler::setStat(Net::MessageIn &msg, PlayerInfo::setStatBase(Attributes::PLAYER_ATTACK_DELAY, base, Notify_true); - PlayerInfo::setStatMod(Attributes::PLAYER_ATTACK_DELAY, 0); + PlayerInfo::setStatMod(Attributes::PLAYER_ATTACK_DELAY, + 0, + Notify_true); PlayerInfo::updateAttrs(); break; case Sp::JOBLEVEL: diff --git a/src/net/tmwa/playerrecv.cpp b/src/net/tmwa/playerrecv.cpp index a914d50d6..f6dadcbed 100644 --- a/src/net/tmwa/playerrecv.cpp +++ b/src/net/tmwa/playerrecv.cpp @@ -116,24 +116,32 @@ void PlayerRecv::processPlayerStatUpdate5(Net::MessageIn &msg) PlayerInfo::setStatBase(Attributes::PLAYER_ATK, msg.readInt16("atk"), Notify_false); - PlayerInfo::setStatMod(Attributes::PLAYER_ATK, msg.readInt16("atk+")); + PlayerInfo::setStatMod(Attributes::PLAYER_ATK, + msg.readInt16("atk+"), + Notify_true); PlayerInfo::updateAttrs(); val = msg.readInt16("matk"); PlayerInfo::setStatBase(Attributes::PLAYER_MATK, val, Notify_false); val = msg.readInt16("matk+"); - PlayerInfo::setStatMod(Attributes::PLAYER_MATK, val); + PlayerInfo::setStatMod(Attributes::PLAYER_MATK, + val, + Notify_true); PlayerInfo::setStatBase(Attributes::PLAYER_DEF, msg.readInt16("def"), Notify_false); - PlayerInfo::setStatMod(Attributes::PLAYER_DEF, msg.readInt16("def+")); + PlayerInfo::setStatMod(Attributes::PLAYER_DEF, + msg.readInt16("def+"), + Notify_true); PlayerInfo::setStatBase(Attributes::PLAYER_MDEF, msg.readInt16("mdef"), Notify_false); - PlayerInfo::setStatMod(Attributes::PLAYER_MDEF, msg.readInt16("mdef+")); + PlayerInfo::setStatMod(Attributes::PLAYER_MDEF, + msg.readInt16("mdef+"), + Notify_true); PlayerInfo::setStatBase(Attributes::PLAYER_HIT, msg.readInt16("hit"), @@ -142,7 +150,9 @@ void PlayerRecv::processPlayerStatUpdate5(Net::MessageIn &msg) PlayerInfo::setStatBase(Attributes::PLAYER_FLEE, msg.readInt16("flee"), Notify_false); - PlayerInfo::setStatMod(Attributes::PLAYER_FLEE, msg.readInt16("flee+")); + PlayerInfo::setStatMod(Attributes::PLAYER_FLEE, + msg.readInt16("flee+"), + Notify_true); PlayerInfo::setStatBase(Attributes::PLAYER_CRIT, msg.readInt16("crit"), |