diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-28 11:22:46 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-03-28 11:22:46 -0600 |
commit | df095c66fdf7af74849454dbf8c4c2284616ecd7 (patch) | |
tree | d078ea9ecffd75ab1b526993c5e18846bf501867 /src/monster.cpp | |
parent | 42a095de15649f0f00ef6c681268d6623205900c (diff) | |
download | mana-df095c66fdf7af74849454dbf8c4c2284616ecd7.tar.gz mana-df095c66fdf7af74849454dbf8c4c2284616ecd7.tar.bz2 mana-df095c66fdf7af74849454dbf8c4c2284616ecd7.tar.xz mana-df095c66fdf7af74849454dbf8c4c2284616ecd7.zip |
Remove #ifdefs related to Being creation
Also move the Monster type offset handling into the eAthena netcode.
Diffstat (limited to 'src/monster.cpp')
-rw-r--r-- | src/monster.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/monster.cpp b/src/monster.cpp index c2632028..08a614ea 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -201,11 +201,7 @@ Being::TargetCursorSize Monster::getTargetCursorSize() const const MonsterInfo &Monster::getInfo() const { -#ifdef TMWSERV_SUPPORT return MonsterDB::get(mJob); -#else - return MonsterDB::get(mJob - 1002); -#endif } void Monster::setShowName(bool show) |