summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells2.cc1
-rw-r--r--crawl-ref/source/spells2.h14
2 files changed, 8 insertions, 7 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 32fc8186a2..c9598cd7c4 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -2086,6 +2086,7 @@ bool summon_common_demon(int pow, bool god_gift)
random2(pow) > 3, false, 1);
}
+// One of the demon-associated gods sends a demon for a follower.
bool summon_demon(monster_type mon, int pow, bool force_hostile,
bool quiet, bool permanent)
{
diff --git a/crawl-ref/source/spells2.h b/crawl-ref/source/spells2.h
index 7296f0ad37..d2f3683581 100644
--- a/crawl-ref/source/spells2.h
+++ b/crawl-ref/source/spells2.h
@@ -172,6 +172,13 @@ bool summon_common_demon(int pow, bool god_gift = false);
bool summon_demon(monster_type mon, int pow, bool force_hostile = false,
bool quiet = false, bool permanent = false);
+bool summon_berserker(int pow, bool force_hostile = false);
+
+bool summon_guardian(int pow, bool force_hostile = false, bool quiet = false,
+ bool permanent = false);
+
+bool summon_daeva(int pow, bool force_hostile = false, bool quiet = false,
+ bool permanent = false);
// last updated 24may2000 {dlb}
/* ***********************************************************************
@@ -186,13 +193,6 @@ void summon_animals(int pow);
* *********************************************************************** */
void summon_small_mammals(int pow);
-bool summon_berserker(int pow, bool force_hostile = false);
-
-bool summon_guardian(int pow, bool force_hostile = false, bool quiet = false,
- bool permanent = false);
-
-bool summon_daeva(int pow, bool force_hostile = false, bool quiet = false,
- bool permanent = false);
// last updated 24may2000 {dlb}
/* ***********************************************************************