diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-05 22:54:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-05 22:54:01 +0300 |
commit | 694e3cd9efae509c5cec3d50bc17d037fd71733e (patch) | |
tree | 576f5b1a9f41dfdc779e9019fe2f46e7cf014d34 /src/map/mob.c | |
parent | 924d3b6f300839800b5c5c514f918edd432fc8bb (diff) | |
download | evol-hercules-694e3cd9efae509c5cec3d50bc17d037fd71733e.tar.gz evol-hercules-694e3cd9efae509c5cec3d50bc17d037fd71733e.tar.bz2 evol-hercules-694e3cd9efae509c5cec3d50bc17d037fd71733e.tar.xz evol-hercules-694e3cd9efae509c5cec3d50bc17d037fd71733e.zip |
Replace struct mob_data to TBL_MOB.
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 6d6148b..5e029f0 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -22,7 +22,7 @@ int emob_deleteslave_sub(struct block_list *bl, va_list ap) hookStop(); return 0; } - struct mob_data *md = (struct mob_data *)bl; + TBL_MOB *md = (TBL_MOB *)bl; if (!md) { hookStop(); |