diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-08-07 19:28:07 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-08-07 19:41:32 +0200 |
commit | 2486b433dcd5f782364a0dd56b20f4ee9a445a5f (patch) | |
tree | 8e9e8607c1a29ff0a541f16691ff49c594006c20 | |
parent | 257799728473f26ebfadf42327b8ba2afddb6335 (diff) | |
download | manaserv-2486b433dcd5f782364a0dd56b20f4ee9a445a5f.tar.gz manaserv-2486b433dcd5f782364a0dd56b20f4ee9a445a5f.tar.bz2 manaserv-2486b433dcd5f782364a0dd56b20f4ee9a445a5f.tar.xz manaserv-2486b433dcd5f782364a0dd56b20f4ee9a445a5f.zip |
Fixed typo
-rw-r--r-- | src/game-server/character.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game-server/character.hpp b/src/game-server/character.hpp index ddfae34a..98c518a2 100644 --- a/src/game-server/character.hpp +++ b/src/game-server/character.hpp @@ -481,7 +481,7 @@ class Character : public Being unsigned char mAccountLevel; /**< Account level of the user. */ int mParty; /**< Party id of the character */ TransactionType mTransaction; /**< Trade/buy/sell action the character is involved in. */ - std::map<int, int> mKillCount; /**< how many monsters the character has slayn of each type */ + std::map<int, int> mKillCount; /**< How many monsters the character has slain of each type */ protected: /** |