summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/invent.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-22 01:55:58 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-22 01:55:58 +0000
commit80a207adf40cfa0520304a653c764b8fddeaa022 (patch)
treed27f497d38c57d7a7d73203e96fd03b789f2280c /crawl-ref/source/invent.cc
parent0550a5c505bf3d1712604a70eaa6334d766762fb (diff)
downloadcrawl-ref-80a207adf40cfa0520304a653c764b8fddeaa022.tar.gz
crawl-ref-80a207adf40cfa0520304a653c764b8fddeaa022.zip
Add a proper message for when the player isn't carrying any fruit.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10772 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/invent.cc')
-rw-r--r--crawl-ref/source/invent.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/invent.cc b/crawl-ref/source/invent.cc
index 680e88fe5b..4f47f45f01 100644
--- a/crawl-ref/source/invent.cc
+++ b/crawl-ref/source/invent.cc
@@ -462,6 +462,8 @@ static std::string _no_selectables_message(int item_selector)
return("You aren't carrying any sharp implements.");
case OSEL_EVOKABLE:
return("You aren't carrying any items that can be evoked.");
+ case OSEL_FRUIT:
+ return("You aren't carrying any fruit.");
}
return("You aren't carrying any such object.");