summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.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/itemname.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/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index a7e2b459e4..1e0c1310d9 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -2305,7 +2305,7 @@ bool is_bad_item(const item_def &item, bool temp)
case POT_POISON:
case POT_STRONG_POISON:
// Poison is not that bad if you're poison resistant.
- return (!player_res_poison()
+ return (!player_res_poison(false)
|| !temp && you.species == SP_VAMPIRE);
case POT_MUTATION:
return (you.is_undead
@@ -2447,7 +2447,7 @@ bool is_useless_item(const item_def &item, bool temp)
case POT_POISON:
case POT_STRONG_POISON:
// If you're poison resistant, poison is only useless.
- return player_res_poison();
+ return player_res_poison(false);
}
return (false);
@@ -2482,7 +2482,7 @@ bool is_useless_item(const item_def &item, bool temp)
return (player_mutation_level(MUT_ACUTE_VISION));
case RING_POISON_RESISTANCE:
- return (player_res_poison(true, temp, false)
+ return (player_res_poison(false, temp, false)
&& (temp || you.species != SP_VAMPIRE));
case AMU_CONTROLLED_FLIGHT: