summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-02 05:07:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-02 05:07:07 +0000
commit83ea81594f83f749d21a9f5f57b9b92525f717ad (patch)
tree86923646075b7af67fbf9d397345837566f526f6 /crawl-ref/source/spl-cast.cc
parentd9575442e5d43a10daa931f4ac63d419473e0e72 (diff)
downloadcrawl-ref-83ea81594f83f749d21a9f5f57b9b92525f717ad.tar.gz
crawl-ref-83ea81594f83f749d21a9f5f57b9b92525f717ad.zip
Change Elyvilon's healing abilities back to Lesser and Greater Healing,
respectively, and rename the healing spells to Minor and Major Healing instead. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9308 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 31e06876bf..935abf777c 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1686,12 +1686,12 @@ spret_type your_spells(spell_type spell, int powc, bool allow_fail)
return (SPRET_ABORT);
break;
- case SPELL_LESSER_HEALING:
+ case SPELL_MINOR_HEALING:
if (cast_healing(5) < 0)
return (SPRET_ABORT);
break;
- case SPELL_GREATER_HEALING:
+ case SPELL_MAJOR_HEALING:
if (cast_healing(25) < 0)
return (SPRET_ABORT);
break;