summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-11-02 22:05:33 -0500
committerCharles Otto <ottochar@gmail.com>2009-11-02 22:06:03 -0500
commit6d4419975b494ee8cd6fd6bbc24e78afda1e0f0c (patch)
treeae762472428cc54b04e42e9f01ae607b95c138a6 /crawl-ref/source/spells2.cc
parenta6f2d01db02e468ece617edd3f70d0365d43bfe3 (diff)
downloadcrawl-ref-6d4419975b494ee8cd6fd6bbc24e78afda1e0f0c.tar.gz
crawl-ref-6d4419975b494ee8cd6fd6bbc24e78afda1e0f0c.zip
Explicitly mention using 0-9 in the prompts for growth and evolution
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index bb0b547709..660c5de06f 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -2209,7 +2209,8 @@ bool plant_ring_from_fruit()
{
int possible_count;
int created_count = 0;
- int rc = _prompt_for_fruit(possible_count, "Use which fruit?");
+ int rc = _prompt_for_fruit(possible_count,
+ "Use which fruit? [0-9] specify amount");
// Prompt failed?
if (rc < 0)
@@ -2451,7 +2452,8 @@ bool evolve_flora()
char prompt_string[100];
memset(prompt_string,0,100);
- sprintf(prompt_string,"Use which fruit (%1.1f oklob plants per fruit)?",
+ sprintf(prompt_string,
+ "Use which fruit? %1.1f oklob plants per fruit, [0-9] specify amount",
approx_oklob_rate);
rc = _prompt_for_fruit(available_count, prompt_string);