diff options
Diffstat (limited to 'src/map/mercenary.c')
-rw-r--r-- | src/map/mercenary.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mercenary.c b/src/map/mercenary.c index 7cc58dc7d..6b508429f 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -113,8 +113,8 @@ int merc_hom_dead(struct homun_data *hd, struct block_list *src) struct map_session_data *sd = hd->master;
clif_emotion(&hd->bl, 16) ; //wah
- if (!sd)
- return 7;
+ if (!sd) //unit remove map will invoke unit free
+ return 3;
//Delete timers when dead.
merc_hom_hungry_timer_delete(hd);
|