From d38ebf04d586987812b1c92d919bcac7e2f99d2e Mon Sep 17 00:00:00 2001 From: skotlex Date: Fri, 24 Nov 2006 14:49:55 +0000 Subject: - The check that blocks the skill AL_TELEPORT on noteleport maps will be overriden when you use Flywings/Butterfly wings, so B Wings are usable again in noteleport maps. - Removed a fd check in foreachinmovearea, which explains why autotraders sometimes were invisible to people who walked within sight of them - Corrected the ignore list sorting function to account for entries with no names so they are sent to the end, not the beginning. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9311 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/map.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/map/map.c') diff --git a/src/map/map.c b/src/map/map.c index 5e4ea6b9e..8d596b394 100644 --- a/src/map/map.c +++ b/src/map/map.c @@ -961,12 +961,8 @@ int map_foreachinmovearea(int (*func)(struct block_list*,va_list),int m,int x0,i map_freeblock_lock(); // メモリからの解放を禁止する for(i=blockcount;iprev) { // 有?かどうかチェック - if (bl_list[i]->type == BL_PC - && ((TBL_PC*) bl_list[i])->fd == 0) - continue; + if(bl_list[i]->prev) returnCount += func(bl_list[i],ap); - } map_freeblock_unlock(); // 解放を許可する -- cgit v1.2.3-70-g09d2