From: <gi...@cr...> - 2025-07-10 16:50:10
|
via 79144c677037e29759d624930c45b1401d67b5c2 (commit) from bb92c9d70428e48777545ae3884f0e780995c5e2 (commit) ----------------------------------------------------------------------- commit 79144c677037e29759d624930c45b1401d67b5c2 Author: DracoOmega <dra...@gm...> Date: Thu Jul 10 14:16:10 2025 -0230 Add an actual message to the tesseract milestones ----------------------------------------------------------------------- Summary of changes: crawl-ref/source/mon-abil.cc | 2 +- crawl-ref/source/mon-death.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crawl-ref/source/mon-abil.cc b/crawl-ref/source/mon-abil.cc index f1d077450b..a3330ba276 100644 --- a/crawl-ref/source/mon-abil.cc +++ b/crawl-ref/source/mon-abil.cc @@ -1471,7 +1471,7 @@ void tesseract_action(monster& mon) if (mon.behaviour != BEH_SLEEP && !mon.props.exists(TESSERACT_START_TIME_KEY)) { mprf(MSGCH_WARN, "You feel the power of Zot begin to gather its forces!"); - mark_milestone("tesseract.activate", ""); + mark_milestone("tesseract.activate", "activated a tesseract"); for (monster_iterator mi; mi; ++mi) { diff --git a/crawl-ref/source/mon-death.cc b/crawl-ref/source/mon-death.cc index 454ab5680a..3cded79120 100644 --- a/crawl-ref/source/mon-death.cc +++ b/crawl-ref/source/mon-death.cc @@ -3187,7 +3187,7 @@ item_def* monster_die(monster& mons, killer_type killer, if (you.props.exists(TESSERACT_START_TIME_KEY)) { - mark_milestone("tesseract.kill", ""); + mark_milestone("tesseract.kill", "destroyed the tesseracts."); you.props.erase(TESSERACT_START_TIME_KEY); } } -- Dungeon Crawl Stone Soup |