From 83ea81594f83f749d21a9f5f57b9b92525f717ad Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 2 Mar 2009 05:07:07 +0000 Subject: 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 --- crawl-ref/source/spl-cast.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/spl-cast.cc') 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; -- cgit v1.2.3-54-g00ecf