From 907b837e7c0860984593413279c686d27a81a77e Mon Sep 17 00:00:00 2001 From: zelgadis Date: Thu, 11 Dec 2008 11:59:07 +0000 Subject: Take a note when a labyrinth entrance is first found (via either magic mapping or seeing it) and when a portal vault is first found (via seeing it only, since magic mapping doesn't provide the description of the portal). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7809 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/notes.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/notes.cc') diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc index 63a40de98d..5a7f6bf743 100644 --- a/crawl-ref/source/notes.cc +++ b/crawl-ref/source/notes.cc @@ -124,7 +124,8 @@ static bool _is_noteworthy( const Note& note ) || note.type == NOTE_LOSE_GOD || note.type == NOTE_PENANCE || note.type == NOTE_MOLLIFY_GOD - || note.type == NOTE_DEATH) + || note.type == NOTE_DEATH + || note.type == NOTE_SEEN_FEAT) { return (true); } @@ -367,6 +368,8 @@ std::string Note::describe( bool when, bool where, bool what ) const break; case NOTE_MESSAGE: result << name; + case NOTE_SEEN_FEAT: + result << "Found " << name; break; default: result << "Buggy note description: unknown note type"; -- cgit v1.2.3-54-g00ecf