Fix some steed/wounded legs things. Also add a wizard-only enlightenment

message specifying that the steed has wounded legs.
This commit is contained in:
arromdee
2002-01-12 05:37:33 +00:00
parent f64c0ac241
commit d5d7f15007
8 changed files with 47 additions and 13 deletions

View File

@@ -790,6 +790,14 @@ int final; /* 0 => still in progress; 1 => over, survived; 2 => dead */
Sprintf(buf, "wounded %s", makeplural(body_part(LEG)));
you_have(buf);
}
#if defined(WIZARD) && defined(STEED)
if (Wounded_legs && u.usteed && wizard) {
Strcpy(buf, x_monnam(u.usteed, ARTICLE_YOUR, (char *)0,
SUPPRESS_SADDLE | SUPPRESS_HALLUCINATION, FALSE));
*buf = highc(*buf);
enl_msg(buf, " has", " had", " wounded legs");
}
#endif
if (Sleeping) enl_msg("You ", "fall", "fell", " asleep");
if (Hunger) enl_msg("You hunger", "", "ed", " rapidly");