summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-06 23:18:57 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-06 23:18:57 +0000
commit699a10feb706349c09dc5037ae8f2e8c0335f13b (patch)
treec8930290ab66fafa56df83956a50ceee9c338fc4 /crawl-ref
parent3eff30e2fc9f31e4b0813eda0a7c3b05f9f34cbf (diff)
downloadcrawl-ref-699a10feb706349c09dc5037ae8f2e8c0335f13b.tar.gz
crawl-ref-699a10feb706349c09dc5037ae8f2e8c0335f13b.zip
Rename the "Guardian" spell to "Summon Guardian", as it's more
descriptive. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5510 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/enum.h2
-rw-r--r--crawl-ref/source/spl-cast.cc2
-rw-r--r--crawl-ref/source/spl-data.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 9249559633..27f169f964 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2478,7 +2478,7 @@ enum spell_type
SPELL_REPEL_MISSILES,
SPELL_BERSERKER_RAGE,
SPELL_DISPEL_UNDEAD, // 85
- SPELL_GUARDIAN,
+ SPELL_SUMMON_GUARDIAN,
SPELL_PESTILENCE,
SPELL_THUNDERBOLT,
SPELL_FLAME_OF_CLEANSING,
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index c903808b4e..8fb9bf1e97 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -1518,7 +1518,7 @@ spret_type your_spells( spell_type spell, int powc, bool allow_fail )
return (SPRET_ABORT);
break;
- case SPELL_GUARDIAN:
+ case SPELL_SUMMON_GUARDIAN:
summon_ice_beast_etc(powc, MONS_ANGEL, BEH_FRIENDLY, false);
break;
diff --git a/crawl-ref/source/spl-data.h b/crawl-ref/source/spl-data.h
index b632fef73a..48a7a2081e 100644
--- a/crawl-ref/source/spl-data.h
+++ b/crawl-ref/source/spl-data.h
@@ -1039,7 +1039,7 @@
},
{
- SPELL_GUARDIAN, "Guardian",
+ SPELL_SUMMON_GUARDIAN, "Summon Guardian",
SPTYP_HOLY,
SPFLAG_NONE,
7,