From 2bcedfdf3c59078e54d15d03b3a9473ed4bdd44b Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Mon, 23 Mar 2009 21:08:10 +0000 Subject: * Allow viewing of card descriptions from Triple Draw and Stack Deck. * Sort items in 'V' screen according to pickup menu sort order. * Name Xom's randart book gifts more randomly. * Colour items seen by 'x' with message colour tags and same for pickup messages. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9541 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/invent.cc | 6 +++--- 1 file changed, 3 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 7ee1b3b064..d2f8447f14 100644 --- a/crawl-ref/source/invent.cc +++ b/crawl-ref/source/invent.cc @@ -149,8 +149,8 @@ const bool InvEntry::is_item_equipped() const return (false); } -// returns values < 0 for edible chunks (non-rotten except for Saprovores), -// 0 for non-chunks, and values > 0 for rotten chunks for non-Saprovores +// Returns values < 0 for edible chunks (non-rotten except for Saprovores), +// 0 for non-chunks, and values > 0 for rotten chunks for non-Saprovores. const int InvEntry::item_freshness() const { if (item->base_type != OBJ_FOOD || item->sub_type != FOOD_CHUNK) @@ -739,7 +739,7 @@ void InvMenu::load_items(const std::vector &mitems, _get_class_hotkeys(i, glyphs); if (!glyphs.empty()) { - const std::string str = "Magical Devices"; // longest string + const std::string str = "Magical Staves and Rods"; // longest string subtitle += std::string(str.length() - subtitle.length() + 1, ' '); subtitle += "(select all with "; -- cgit v1.2.3-54-g00ecf