summaryrefslogtreecommitdiff
path: root/src/net/ea/inventoryrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-17 02:33:41 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-17 02:33:41 +0300
commit1be5a1cd679a5476e1ad3339c01a8b7237b84aec (patch)
tree8fcbe25cd0444185f66e3d22ae31000aaa28173a /src/net/ea/inventoryrecv.cpp
parente91a8c39e38cddb085320ae390cf985a73eaee5c (diff)
downloadManaVerse-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.tar.gz
ManaVerse-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.tar.bz2
ManaVerse-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.tar.xz
ManaVerse-1be5a1cd679a5476e1ad3339c01a8b7237b84aec.zip
Remove default parameter from PlayerInfo::setStatMod.
Diffstat (limited to 'src/net/ea/inventoryrecv.cpp')
-rw-r--r--src/net/ea/inventoryrecv.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/ea/inventoryrecv.cpp b/src/net/ea/inventoryrecv.cpp
index 839447496..f1a4e2e69 100644
--- a/src/net/ea/inventoryrecv.cpp
+++ b/src/net/ea/inventoryrecv.cpp
@@ -175,7 +175,9 @@ void InventoryRecv::processPlayerAttackRange(Net::MessageIn &msg)
PlayerInfo::setStatBase(Attributes::PLAYER_ATTACK_RANGE,
range,
Notify_true);
- PlayerInfo::setStatMod(Attributes::PLAYER_ATTACK_RANGE, 0);
+ PlayerInfo::setStatMod(Attributes::PLAYER_ATTACK_RANGE,
+ 0,
+ Notify_true);
BLOCK_END("InventoryRecv::processPlayerAttackRange")
}