diff options
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 12 |
1 files changed, 7 insertions, 5 deletions
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) { |