summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ghost.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-02-21 20:56:04 -0330
committerSteve Melenchuk <smelenchuk@gmail.com>2014-03-06 09:58:09 -0700
commite724f9623f701d6d69dd7654707d30e1ed94878a (patch)
treec932168d02de61137374766fb02149d48a664a0f /crawl-ref/source/ghost.cc
parentb69413d9fdc355ab0a9fd244e8869fbfa8f5a627 (diff)
downloadcrawl-ref-e724f9623f701d6d69dd7654707d30e1ed94878a.tar.gz
crawl-ref-e724f9623f701d6d69dd7654707d30e1ed94878a.zip
Convert Dragon's Call to Summon Dragon for player ghosts
(Also raise the cap slightly, now that it's monster-only)
Diffstat (limited to 'crawl-ref/source/ghost.cc')
-rw-r--r--crawl-ref/source/ghost.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/ghost.cc b/crawl-ref/source/ghost.cc
index 53055d9d60..2d8be8ed7a 100644
--- a/crawl-ref/source/ghost.cc
+++ b/crawl-ref/source/ghost.cc
@@ -82,8 +82,8 @@ static spell_type search_order_third[] =
{
SPELL_SYMBOL_OF_TORMENT,
SPELL_SUMMON_GREATER_DEMON,
+ SPELL_DRAGON_CALL,
SPELL_SUMMON_HORRIBLE_THINGS,
- SPELL_SUMMON_DRAGON,
SPELL_HAUNT,
SPELL_SUMMON_HYDRA,
SPELL_SUMMON_DEMON,
@@ -885,6 +885,8 @@ spell_type ghost_demon::translate_spell(spell_type spell) const
return SPELL_SUMMON_MINOR_DEMON;
case SPELL_DELAYED_FIREBALL:
return SPELL_FIREBALL;
+ case SPELL_DRAGON_CALL:
+ return SPELL_SUMMON_DRAGON;
default:
break;
}