From fc71573dc0e2558ad4c977534d716d971ac798f2 Mon Sep 17 00:00:00 2001 From: ultramage Date: Fri, 14 Mar 2008 08:05:38 +0000 Subject: Fixed one condition incorrectly modified in r12358, which caused dynamically unloaded mobs to never spawn once they've been unloaded once (bugreport:1178) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12361 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/unit.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/map/unit.c') diff --git a/src/map/unit.c b/src/map/unit.c index 5a7a62b96..62638e252 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1893,12 +1893,14 @@ int unit_free(struct block_list *bl, int clrtype) if(md->spawn) { md->spawn->active--; - md->spawn->num--; - if( !md->spawn->state.dynamic && md->spawn->num == 0 ) - {// Last freed mob is responsible for deallocating the group's spawn data. - aFree(md->spawn); - md->spawn = NULL; + if( !md->spawn->state.dynamic ) + {// permanently remove the mob + if( --md->spawn->num == 0 ) + {// Last freed mob is responsible for deallocating the group's spawn data. + aFree(md->spawn); + md->spawn = NULL; + } } } if(md->base_status) { -- cgit v1.2.3-60-g2f50