diff options
Diffstat (limited to 'src/net/ea')
-rw-r--r-- | src/net/ea/playerrecv.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/net/ea/playerrecv.cpp b/src/net/ea/playerrecv.cpp index edc604907..2f0e5782f 100644 --- a/src/net/ea/playerrecv.cpp +++ b/src/net/ea/playerrecv.cpp @@ -183,7 +183,9 @@ void PlayerRecv::processPlayerStatUpdate4(Net::MessageIn &msg) static_cast<AttributesT>(type)); const int points = PlayerInfo::getAttribute( Attributes::PLAYER_CHAR_POINTS) + oldValue - value; - PlayerInfo::setAttribute(Attributes::PLAYER_CHAR_POINTS, points); + PlayerInfo::setAttribute(Attributes::PLAYER_CHAR_POINTS, + points, + Notify_true); NotifyManager::notify(NotifyTypes::SKILL_RAISE_ERROR); } |