diff options
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 6ca85aba1..e7f7fffce 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -2107,8 +2107,11 @@ int unit_remove_map_(struct block_list *bl, clr_type clrtype, const char* file, } default: ;// do nothing } - - clif_clearunit_area(bl,clrtype); + /** + * BL_MOB is handled by mob_dead + **/ + if( bl->type != BL_MOB ) + clif_clearunit_area(bl,clrtype); map_delblock(bl); map_freeblock_unlock(); return 1; |