From 52fa41b7a9881c60f8d0c27b206b17da299d2b52 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 6 Aug 2008 22:05:42 +0000 Subject: Note identification of randarts *after* autoinscribing them and, in the case of weapons, it suffices if the properties are known - knowing a weapon's enchantment is not necessary for the ID note. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6787 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/item_use.cc | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/item_use.cc') diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc index d19029aea2..3affd408d9 100644 --- a/crawl-ref/source/item_use.cc +++ b/crawl-ref/source/item_use.cc @@ -59,6 +59,7 @@ #include "monstuff.h" #include "mstuff2.h" #include "mon-util.h" +#include "notes.h" #include "ouch.h" #include "player.h" #include "quiver.h" @@ -546,14 +547,26 @@ void wield_effects(int item_wield_2, bool showMsgs) // (could be extended to other talking weapons...) const char *old_desc = item.name(DESC_CAP_THE).c_str(); - set_ident_flags( item, ISFLAG_EQ_WEAPON_MASK ); + if (!was_known) + { + if (is_random_artefact(item)) + item.flags |= ISFLAG_NOTED_ID; + set_ident_flags( item, ISFLAG_EQ_WEAPON_MASK ); + } if (is_random_artefact( item )) { i_dam = randart_wpn_property(item, RAP_BRAND); use_randart(item_wield_2); - if (Options.autoinscribe_randarts && !was_known) - add_autoinscription( item, randart_auto_inscription(item)); + if (!was_known) + { + if (Options.autoinscribe_randarts) + add_autoinscription( item, randart_auto_inscription(item)); + + // Make a note of it. + take_note(Note(NOTE_ID_ITEM, 0, 0, item.name(DESC_NOCAP_A).c_str(), + origin_desc(item).c_str())); + } } else { -- cgit v1.2.3-54-g00ecf