From 733294517b6c98b2ce17f3191140390a41e384e7 Mon Sep 17 00:00:00 2001 From: dolorous Date: Sat, 7 Jun 2008 23:25:36 +0000 Subject: Rename ABIL_SUMMON_DEMONS to ABIL_SUMMON_DEMON, for consistency. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5559 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/abl-show.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/abl-show.cc') diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc index e6992af2e8..83388249d2 100644 --- a/crawl-ref/source/abl-show.cc +++ b/crawl-ref/source/abl-show.cc @@ -193,7 +193,7 @@ static const ability_def Ability_List[] = { ABIL_FLY, "Fly", 3, 0, 100, 0, ABFLAG_NONE }, { ABIL_SUMMON_MINOR_DEMON, "Summon Minor Demon", 3, 3, 75, 0, ABFLAG_NONE }, - { ABIL_SUMMON_DEMONS, "Summon Demons", 5, 5, 150, 0, ABFLAG_NONE }, + { ABIL_SUMMON_DEMON, "Summon Demon", 5, 5, 150, 0, ABFLAG_NONE }, { ABIL_HELLFIRE, "Hellfire", 8, 8, 200, 0, ABFLAG_NONE }, { ABIL_TORMENT, "Torment", 9, 0, 250, 0, ABFLAG_PAIN }, { ABIL_RAISE_DEAD, "Raise Dead", 5, 5, 150, 0, ABFLAG_NONE }, @@ -557,7 +557,7 @@ static talent _get_talent(ability_type ability, bool check_confused) failure = 35 - you.experience_level; break; - case ABIL_SUMMON_DEMONS: + case ABIL_SUMMON_DEMON: failure = 40 - you.experience_level; break; @@ -1282,7 +1282,7 @@ static bool _do_ability(const ability_def& abil) BEH_FRIENDLY); break; - case ABIL_SUMMON_DEMONS: + case ABIL_SUMMON_DEMON: summon_general_creature(you.experience_level * 4, false, summon_any_demon(DEMON_COMMON), BEH_FRIENDLY); @@ -2062,7 +2062,7 @@ std::vector your_talents( bool check_confused ) _add_talent(talents, ABIL_SUMMON_MINOR_DEMON, check_confused ); if (player_mutation_level(MUT_SUMMON_DEMONS)) - _add_talent(talents, ABIL_SUMMON_DEMONS, check_confused ); + _add_talent(talents, ABIL_SUMMON_DEMON, check_confused ); if (player_mutation_level(MUT_HURL_HELLFIRE)) _add_talent(talents, ABIL_HELLFIRE, check_confused ); -- cgit v1.2.3-54-g00ecf