diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-20 08:18:24 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-20 08:18:24 +0000 |
commit | 8adeaff2469269a8579337067c94de28c1c5623c (patch) | |
tree | b6a0c0fbc997adfd90932f0aff16494cb6eb1fa8 /src/map/map.c | |
parent | 8d2915e84febf9e6330fee9bb6c8706d0c16fd3f (diff) | |
download | hercules-8adeaff2469269a8579337067c94de28c1c5623c.tar.gz hercules-8adeaff2469269a8579337067c94de28c1c5623c.tar.bz2 hercules-8adeaff2469269a8579337067c94de28c1c5623c.tar.xz hercules-8adeaff2469269a8579337067c94de28c1c5623c.zip |
Follow up r16933 Fixing a typo on map_foreachinmap, block -> block_mob
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16934 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r-- | src/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.c b/src/map/map.c index 8ff84ed1a..456ae66ed 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -1208,7 +1208,7 @@ int map_foreachinmap(int (*func)(struct block_list*,va_list), int m, int type,.. if( type&BL_MOB ) for( b = 0; b < bsize; b++ ) - for( bl = map[ m ].block[ b ]; bl != NULL; bl = bl->next ) + for( bl = map[ m ].block_mob[ b ]; bl != NULL; bl = bl->next ) if( bl_list_count < BL_LIST_MAX ) bl_list[ bl_list_count++ ] = bl; |