summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 2f99be2980..9ebca41787 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -652,7 +652,7 @@ bool cast_revivification(int power)
void cast_cure_poison(int mabil)
{
- if (!you.poison)
+ if (!you.poisoning)
canned_msg(MSG_NOTHING_HAPPENS);
else
reduce_poison_player( 2 + random2(mabil) + random2(3) );
@@ -664,7 +664,7 @@ void purification(void)
{
mpr("You feel purified!");
- you.poison = 0;
+ you.poisoning = 0;
you.rotting = 0;
you.conf = 0;
you.slow = 0;