From 80a207adf40cfa0520304a653c764b8fddeaa022 Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 22 Sep 2009 01:55:58 +0000 Subject: 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 --- crawl-ref/source/invent.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crawl-ref/source/invent.cc') 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."); -- cgit v1.2.3-54-g00ecf