summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game-server/monster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/monster.cpp b/src/game-server/monster.cpp
index 3caaac2e..af2bc7aa 100644
--- a/src/game-server/monster.cpp
+++ b/src/game-server/monster.cpp
@@ -386,7 +386,7 @@ void Monster::changeAnger(Actor *target, int amount)
Being *t = static_cast< Being * >(target);
if (mAnger.find(t) != mAnger.end())
{
- mAnger[t] = amount;
+ mAnger[t] += amount;
}
else
{