From 13abff271666dcc566102311c3b9d237ea04f933 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 22 Apr 2009 15:58:36 +0000 Subject: * Tweak Xom's ideas about what makes a funny or boring death. * Add another option (*sigh*) covering whether W=T and P=R. (Defaults to false.) * Various spacing and comment fixes. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9675 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/invent.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/invent.cc') diff --git a/crawl-ref/source/invent.cc b/crawl-ref/source/invent.cc index 6abb296c73..9208943f4b 100644 --- a/crawl-ref/source/invent.cc +++ b/crawl-ref/source/invent.cc @@ -1036,10 +1036,9 @@ static bool _item_class_selected(const item_def &i, int selector) return (true); for (int eq = 0; eq < NUM_EQUIP; eq++) - { if (you.equip[eq] == i.link) return (true); - } + return (false); } default: @@ -1281,7 +1280,7 @@ std::vector prompt_invent_items( ret = letter_to_index( keyin ); if (!is_valid_item( you.inv[ret] )) - mpr( "You do not have any such object." ); + mpr("You do not have any such object."); else break; } -- cgit v1.2.3-54-g00ecf