diff options
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 9a333892b..29b055687 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -9460,7 +9460,7 @@ int atcommand_homlevel( if (!message || !*message)
return -1;
- if ( sd->status.hom_id == 0 || !sd->homunculus.alive || sd->homunculus.vaporize )
+ if ( sd->status.hom_id == 0 || !sd->homunculus.hp || sd->homunculus.vaporize )
return 1 ;
level = atoi(message);
@@ -9587,7 +9587,7 @@ int atcommand_homtalk( nullpo_retr(-1, sd);
- if(!sd->status.hom_id || !sd->hd || !sd->homunculus.alive )
+ if(!sd->status.hom_id || !sd->hd || !sd->homunculus.hp)
return -1;
if (sscanf(message, "%99[^\n]", mes) < 1)
|