diff options
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 6695abf6b..787b25765 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -2029,7 +2029,12 @@ int unit_free(struct block_list *bl, int clrtype) case BL_MOB: { struct mob_data *md = (struct mob_data*)bl; - if( md->deletetimer != -1 ) + if( md->spawn_timer != INVALID_TIMER ) + { + delete_timer(md->spawn_timer,mob_delayspawn); + md->spawn_timer = INVALID_TIMER; + } + if( md->deletetimer != INVALID_TIMER ) { delete_timer(md->deletetimer,mob_timer_delete); md->deletetimer = INVALID_TIMER; |