summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-23 16:53:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-23 16:53:23 +0000
commitd5968daee172a5cbe5d3e35807b66e6e7a167783 (patch)
tree41031a1e741b2d68aafacce75a94d9723981b4a4 /crawl-ref/source/food.cc
parent1d68d70963ec82ff2c70ec9f82c0e776a79079d7 (diff)
downloadcrawl-ref-d5968daee172a5cbe5d3e35807b66e6e7a167783.tar.gz
crawl-ref-d5968daee172a5cbe5d3e35807b66e6e7a167783.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4549 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index e3706f971f..e3028e7187 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -1407,7 +1407,7 @@ bool can_ingest(int what_isit, int kindof_thing, bool suppress_msg, bool reqid,
// ur_chunkslover not defined in terms of ur_carnivorous because
// a player could be one and not the other IMHO - 13mar2000 {dlb}
bool ur_chunkslover = (
- (check_hunger? you.hunger_state <= HS_HUNGRY : true)
+ (check_hunger ? you.hunger_state < HS_SATIATED : true)
|| you.omnivorous()
|| player_mutation_level(MUT_CARNIVOROUS));