livelog tweaks

Log all level gains and loses.  For the existing logging of changes
in rank, mention the level number with the new title.  Classifying
level loss as "minor achievement" seems weird but I didn't see any
choice more appropriate.

Make '#chronicle' autocomplete.  That makes "#ch" ambiguous, but
better to have to type #cha to chat than to have to completely spell
out #chronicle.  (Changing it to #journal would make #j ambigious
but might still be an improvement.)
This commit is contained in:
PatR
2022-02-09 14:25:32 -08:00
parent c845a765a5
commit d761263e89
3 changed files with 15 additions and 7 deletions

View File

@@ -2282,11 +2282,14 @@ record_achievement(schar achidx)
if (g.program_state.gameover)
return; /* don't livelog achievements recorded at end of game */
if (absidx >= ACH_RNK1 && absidx <= ACH_RNK8) {
livelog_printf(achieve_msg[absidx].llflag, "attained the rank of %s",
livelog_printf(achieve_msg[absidx].llflag,
"attained the rank of %s (level %d)",
rank_of(rank_to_xlev(absidx - (ACH_RNK1 - 1)),
Role_switch, (achidx < 0) ? TRUE : FALSE));
Role_switch, (achidx < 0) ? TRUE : FALSE),
u.ulevel);
} else
livelog_printf(achieve_msg[absidx].llflag, "%s", achieve_msg[absidx].msg);
livelog_printf(achieve_msg[absidx].llflag, "%s",
achieve_msg[absidx].msg);
}
/* discard a recorded achievement; return True if removed, False otherwise */