summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-30 14:53:42 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-30 14:53:42 +0000
commit7c3ec6bed4e81892c772db3e33d30f09164e7bb3 (patch)
tree171d041b2c38cfd7ad417d40181f718d16841b3b /crawl-ref/source/food.cc
parent7cd6623f97a35ace8b72b9baf7966ebd4f8f3d5d (diff)
downloadcrawl-ref-7c3ec6bed4e81892c772db3e33d30f09164e7bb3.tar.gz
crawl-ref-7c3ec6bed4e81892c772db3e33d30f09164e7bb3.zip
Fix 2006479: worn unidentified =PR marking poisonous food as safe.
Fix 2006014: character selection crashing after non-random book choice. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6248 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 07e8740533..7a20b95fbe 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -1846,7 +1846,7 @@ bool is_poisonous(const item_def &food)
if (food.base_type != OBJ_FOOD && food.base_type != OBJ_CORPSES)
return (false);
- if (player_res_poison())
+ if (player_res_poison(false))
return (false);
return (mons_corpse_effect(food.plus) == CE_POISONOUS);