summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-19 05:05:08 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-19 05:05:08 +0000
commit9c825029344d1ab8e5e85987a375cbae9109e2ce (patch)
treee91919f2187d78c1e703b837b642a6cf2eeb6216 /crawl-ref/source/player.cc
parent587b2392103a4d9bcaa9cda91f945e874216d232 (diff)
downloadcrawl-ref-9c825029344d1ab8e5e85987a375cbae9109e2ce.tar.gz
crawl-ref-9c825029344d1ab8e5e85987a375cbae9109e2ce.zip
For jewellery with pluses and wands, only make an ident note when the
first item of the type is identified, not when the charges/pluses of any item of the type is identified. Make sure that artefacts have nothing to do with the identification level of jewellery by making versions of set_ident_type() and get_ident_type() which accept a full item_def as a parameter. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5973 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 926e99f6bb..33a97be0f4 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -5122,10 +5122,9 @@ void haste_player( int amount )
if (amu_eff)
{
mpr( "Your amulet glows brightly." );
- const item_def *amulet = you.slot_item(EQ_AMULET);
+ item_def *amulet = you.slot_item(EQ_AMULET);
if (amulet && !item_type_known(*amulet))
- set_ident_type( amulet->base_type, amulet->sub_type,
- ID_KNOWN_TYPE );
+ set_ident_type( *amulet, ID_KNOWN_TYPE );
}
if (you.duration[DUR_HASTE] == 0)