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 32a2e9f97..1d417be98 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -720,8 +720,8 @@ int merc_resurrect_homunculus(struct map_session_data *sd, unsigned char per, sh hd->bl.m = sd->bl.m;
hd->bl.x = x;
hd->bl.y = y;
- map_addblock(&sd->hd->bl);
- clif_spawn(&sd->hd->bl);
+ map_addblock(&hd->bl);
+ clif_spawn(&hd->bl);
}
status_revive(&hd->bl, per, 0);
return 1;
|