summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-22 13:38:14 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-22 13:38:14 +0000
commitb1c3416374836953b47f620bdb88dfd940da2ae1 (patch)
treeb753023ff7cd706c88be64140496fcde84cef27c /crawl-ref/source/item_use.cc
parent8a01970a5f774651110ebc93958f91a2d138d211 (diff)
downloadcrawl-ref-b1c3416374836953b47f620bdb88dfd940da2ae1.tar.gz
crawl-ref-b1c3416374836953b47f620bdb88dfd940da2ae1.zip
Implemented 1601016: better header message for 'w', 't'.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@466 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 30c1047425..a52bdcddc6 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -207,7 +207,7 @@ bool wield_weapon(bool auto_wield, int slot, bool show_weff_messages)
{
if (!auto_wield)
item_slot = prompt_invent_item(
- "Wield which item (- for none)?",
+ "Wield which item (- for none, * to show all)?",
MT_INVSELECT, OSEL_WIELD,
true, true, true, '-', NULL, OPER_WIELD);
else
@@ -1017,7 +1017,8 @@ void throw_anything(void)
return;
}
- throw_slot = prompt_invent_item( "Throw which item?", MT_INVSELECT,
+ throw_slot = prompt_invent_item( "Throw which item? (* to show all)",
+ MT_INVSELECT,
OBJ_MISSILES, true, true, true, 0, NULL,
OPER_THROW );
if (throw_slot == PROMPT_ABORT)