diff options
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index b508c9adb..59c889f55 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6081,7 +6081,7 @@ ACMD(mobsearch) it = mapit_geteachmob(); for(;;) { - TBL_MOB* md = (TBL_MOB*)mapit->next(it); + struct mob_data *md = (struct mob_data *)mapit->next(it); if( md == NULL ) break;// no more mobs @@ -6775,7 +6775,7 @@ ACMD(showmobs) it = mapit_geteachmob(); for(;;) { - TBL_MOB* md = (TBL_MOB*)mapit->next(it); + struct mob_data *md = (struct mob_data *)mapit->next(it); if( md == NULL ) break;// no more mobs |