follow-up: evolve placeholder content to match variant

suggestion by paxed

Increments EDITLEVEL again.
This commit is contained in:
nhmall
2025-02-02 12:53:58 -05:00
parent d331029b03
commit d65d0062a9
7 changed files with 36 additions and 23 deletions
+7 -9
View File
@@ -3644,15 +3644,13 @@ xkilled(
#if 0 /* HARDFOUGHT-only at present */
#ifdef LIVELOG
if (is_bones_monster(mtmp->data)
&& has_former(mtmp) && *FORMER(mtmp)->rank
&& strlen(FORMER(mtmp)->rank) > 0) {
if (mtmp->data == &mons[PM_GHOST])
livelog_printf(LL_UMONST, "destroyed %s, the former %s",
livelog_mon_nam(mtmp), FORMER(mtmp)->rank);
else
livelog_printf(LL_UMONST, "destroyed %s, and former %s",
livelog_mon_nam(mtmp), FORMER(mtmp)->rank);
if (has_former(mtmp) && FORMER(mtmp)->rank.mnum != NON_PM) {
livelog_printf(LL_UMONST, "destroyed %s, %s former %s",
livelog_mon_nam(mtmp),
(mtmp->data == &mons[PM_GHOST]) ? "the" : "and",
rank_of(FORMER(mtmp)->rank.lev,
FORMER(mtmp)->rank.mnum,
FORMER(mtmp)->rank.female));
}
#endif /* LIVELOG */
#endif