summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)