summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-19 12:45:08 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-19 12:45:08 +0000
commit28a1ee4ae6389c6b2694d8bf1ed386038a52c56f (patch)
tree07f846cd91b723f895370cdc8679014d02ad072e
parent8c222da8ebfbc1f7a999f2c6a264c7af252ce3cf (diff)
downloadcrawl-ref-28a1ee4ae6389c6b2694d8bf1ed386038a52c56f.tar.gz
crawl-ref-28a1ee4ae6389c6b2694d8bf1ed386038a52c56f.zip
For consistency, rename the "Summon Ugly Things" spell to "Summon Ugly
Thing". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4365 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/enum.h2
-rw-r--r--crawl-ref/source/mon-spll.h2
-rw-r--r--crawl-ref/source/mstuff2.cc4
-rw-r--r--crawl-ref/source/spl-data.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 9e6b47ad58..5424c2f331 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2572,7 +2572,7 @@ enum spell_type
SPELL_SUMMON_DRAKES,
SPELL_BLINK_OTHER, // 220
SPELL_SUMMON_MUSHROOMS,
- SPELL_SUMMON_UGLY_THINGS,
+ SPELL_SUMMON_UGLY_THING,
NUM_SPELLS,
SPELL_NO_SPELL = 250 // 255 - added 22jan2000 {dlb}
diff --git a/crawl-ref/source/mon-spll.h b/crawl-ref/source/mon-spll.h
index 9c9713c5bb..2aa363e8ed 100644
--- a/crawl-ref/source/mon-spll.h
+++ b/crawl-ref/source/mon-spll.h
@@ -197,7 +197,7 @@
{
SPELL_BOLT_OF_FIRE,
SPELL_BOLT_OF_COLD,
- SPELL_SUMMON_UGLY_THINGS,
+ SPELL_SUMMON_UGLY_THING,
SPELL_PARALYSE,
SPELL_ISKENDERUNS_MYSTIC_BLAST,
SPELL_TELEPORT_SELF }
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 9ac10b196b..88eb060bb0 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -609,7 +609,7 @@ void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast)
return;
case SPELL_SUMMON_DEMON: // class 2-4 demons
- case SPELL_SUMMON_UGLY_THINGS:
+ case SPELL_SUMMON_UGLY_THING:
if (mons_abjured(monster, monsterNearby))
return;
@@ -879,7 +879,7 @@ void setup_mons_cast(const monsters *monster, struct bolt &pbolt, int spell_cast
case SPELL_SHADOW_CREATURES: // summon anything appropriate for level
case SPELL_FAKE_RAKSHASA_SUMMON:
case SPELL_SUMMON_DEMON:
- case SPELL_SUMMON_UGLY_THINGS:
+ case SPELL_SUMMON_UGLY_THING:
case SPELL_ANIMATE_DEAD:
case SPELL_CALL_IMP:
case SPELL_SUMMON_UFETUBUS:
diff --git a/crawl-ref/source/spl-data.h b/crawl-ref/source/spl-data.h
index 2487417bb8..3072809df5 100644
--- a/crawl-ref/source/spl-data.h
+++ b/crawl-ref/source/spl-data.h
@@ -2350,7 +2350,7 @@
},
{
- SPELL_SUMMON_UGLY_THINGS, "Summon Ugly Things",
+ SPELL_SUMMON_UGLY_THING, "Summon Ugly Thing",
SPTYP_SUMMONING,
SPFLAG_NONE,
5,