summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index 926876ead5..e9c781c5ce 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -852,6 +852,11 @@ static void check_note_item(item_def &item)
take_note(Note(NOTE_GET_ITEM, 0, 0, item.name(DESC_NOCAP_A).c_str(),
origin_desc(item).c_str()));
item.flags |= ISFLAG_NOTED_GET;
+
+ // If it's already fully identified when picked up, don't take
+ // further notes.
+ if ( fully_identified(item) )
+ item.flags |= ISFLAG_NOTED_ID;
}
}