summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-08 18:29:52 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-08 18:29:52 +0000
commit9a20cf0a34b9caec2ff9a5c3708a88fb84c80496 (patch)
tree8c52366fe290b5821c8d49b21353cd69845e39bd /crawl-ref/source/spl-cast.cc
parent459e277ada7ab661190d4a3497a374d76e30c5a4 (diff)
downloadcrawl-ref-9a20cf0a34b9caec2ff9a5c3708a88fb84c80496.tar.gz
crawl-ref-9a20cf0a34b9caec2ff9a5c3708a88fb84c80496.zip
Fix debugging ray zaps (e.g. unknown wands) always setting obvious_effect by
making ZAP_DEBUGGING_RAY no longer an obvious_effect. It might be more correct to restore obvious_effect on a tracer, or at least a player_tracer, but bug 2515082 [and r8500] makes me cautious. Fix healing being too generously identified. Fix wand of healing not working on enemies if you happen to worship Ely. Fixes [2580106]. Also some dead code elimination. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8982 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 016c168260..9978a36f5e 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1750,12 +1750,12 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
break;
case SPELL_LESSER_HEALING:
- if (!cast_healing(5))
+ if (cast_healing(5) < 0)
return (SPRET_ABORT);
break;
case SPELL_GREATER_HEALING:
- if (!cast_healing(25))
+ if (cast_healing(25) < 0)
return (SPRET_ABORT);
break;