summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/notes.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/notes.cc')
-rw-r--r--crawl-ref/source/notes.cc9
1 files changed, 2 insertions, 7 deletions
diff --git a/crawl-ref/source/notes.cc b/crawl-ref/source/notes.cc
index 3f3e1124ed..1d913205ab 100644
--- a/crawl-ref/source/notes.cc
+++ b/crawl-ref/source/notes.cc
@@ -102,6 +102,8 @@ static bool is_noteworthy( const Note& note )
note.type == NOTE_GOD_GIFT ||
note.type == NOTE_GET_MUTATION ||
note.type == NOTE_LOSE_MUTATION ||
+ note.type == NOTE_GET_ITEM ||
+ note.type == NOTE_ID_ITEM ||
note.type == NOTE_SEEN_MONSTER ||
note.type == NOTE_KILL_MONSTER ||
note.type == NOTE_POLY_MONSTER ||
@@ -174,13 +176,6 @@ static bool is_noteworthy( const Note& note )
if ( rnote.first == note.first && rnote.second == note.second )
return false;
break;
- case NOTE_ID_ITEM:
- case NOTE_GET_ITEM:
- /* re-id'ing an item, e.g. second copy of book, isn't
- noteworthy */
- if ( rnote.name == note.name )
- return false;
- break;
case NOTE_HP_CHANGE:
/* not if we have a recent warning */
if ( (note.turn - rnote.turn < 5) &&