summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-11-05 20:15:58 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-11-05 21:04:00 +0100
commitd59c05e43047f55efcfb155ab4f5ccf65b71f862 (patch)
tree2e05e93d0d46f421bf9d9891834c143bc136f20f /crawl-ref/source/food.h
parent9a085d99210cd7cf1348ddbdfbb41fd74e1df481 (diff)
downloadcrawl-ref-d59c05e43047f55efcfb155ab4f5ccf65b71f862.tar.gz
crawl-ref-d59c05e43047f55efcfb155ab4f5ccf65b71f862.zip
Give different messages when nausea goes away, depending on food and hunger.
"Your stomach is not as upset anymore, and you want to eat." -- spoilable food you can eat right now "Your stomach is not as upset anymore, and you need some food." -- hungry, no chunks "Your stomach is not as upset anymore, let's find someone to eat." -- carnivore/gourmand with tummy space "Your stomach is not as upset anymore." -- otherwise By default, only the first one stops run/rest, but the extra messages are different so players with different tastes can set them accordingly.
Diffstat (limited to 'crawl-ref/source/food.h')
-rw-r--r--crawl-ref/source/food.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/food.h b/crawl-ref/source/food.h
index 42d57b68c0..02f234b561 100644
--- a/crawl-ref/source/food.h
+++ b/crawl-ref/source/food.h
@@ -89,5 +89,6 @@ int you_min_hunger();
void handle_starvation();
const char* hunger_cost_string(const int hunger);
+void end_nausea();
#endif