summaryrefslogtreecommitdiff
path: root/src/game-server/monster.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <mana@crushnet.org>2010-01-08 22:01:45 +0100
committerPhilipp Sehmisch <mana@crushnet.org>2010-01-08 22:01:45 +0100
commitde7d79c7f42636065ca5281fa3bec151e34a7c48 (patch)
treea7c0b7769b5fdbe7c84dfc644dc6a54e4ed2f79a /src/game-server/monster.cpp
parent9137942b624a152f143662b58ebc7277b508cb50 (diff)
downloadmanaserv-de7d79c7f42636065ca5281fa3bec151e34a7c48.tar.gz
manaserv-de7d79c7f42636065ca5281fa3bec151e34a7c48.tar.bz2
manaserv-de7d79c7f42636065ca5281fa3bec151e34a7c48.tar.xz
manaserv-de7d79c7f42636065ca5281fa3bec151e34a7c48.zip
Added tracing of kill count for each monster per character
Diffstat (limited to 'src/game-server/monster.cpp')
-rw-r--r--src/game-server/monster.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game-server/monster.cpp b/src/game-server/monster.cpp
index f30396c9..e0ff43b5 100644
--- a/src/game-server/monster.cpp
+++ b/src/game-server/monster.cpp
@@ -455,6 +455,7 @@ void Monster::died()
{
character->receiveExperience(*iSkill, expPerSkill, mSpecy->getOptimalLevel());
}
+ character->incrementKillCount(mSpecy->getType());
}
}
}