summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 21:42:02 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-18 21:42:02 +0000
commit3b4bc6d2509c72358a181200606f5bb93689d9c7 (patch)
tree7623632766c29b64f7c90f1c84638a191218148b /crawl-ref/source/acr.cc
parenta6d89fbabb631ecbdcbb86c59aa70c28fd7da696 (diff)
downloadcrawl-ref-3b4bc6d2509c72358a181200606f5bb93689d9c7.tar.gz
crawl-ref-3b4bc6d2509c72358a181200606f5bb93689d9c7.zip
* Also add blood bottling to command help for Vampires.
* Better feedback when quiver cycling doesn't do anything. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8552 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index e584530dae..f56c16776d 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2505,7 +2505,12 @@ void process_command( command_type cmd )
{
// Kind of a hacky way to get quiver to change.
you.m_quiver->on_item_fired(you.inv[next], true);
+
+ if (next == cur)
+ mpr("No other missiles available. Use F to throw any item.");
}
+ else if (cur == -1)
+ mpr("No missiles available. Use F to throw any item.");
break;
}