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/beingmanager.h | |
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/beingmanager.h')
-rw-r--r-- | src/beingmanager.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/beingmanager.h b/src/beingmanager.h index 891a8ccb..727918a8 100644 --- a/src/beingmanager.h +++ b/src/beingmanager.h @@ -50,11 +50,7 @@ class BeingManager /** * Create a being and add it to the list of beings. */ -#ifdef TMWSERV_SUPPORT - Being *createBeing(int id, int type, int subtype); -#else - Being *createBeing(int id, Uint16 job); -#endif + Being *createBeing(int id, Being::Type type, int subtype); /** * Remove a Being. |