summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 00:47:51 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 00:47:51 +0000
commit1dc5deb5bc7fff6688670f19a76fdacae1136a6a (patch)
tree0d313826e0ab411da8123e9051bc8fa7bc339f26 /crawl-ref/source/spells2.h
parentb857cd3be4fe4adcf3a5abcf83d9873439dc1ab1 (diff)
downloadcrawl-ref-1dc5deb5bc7fff6688670f19a76fdacae1136a6a.tar.gz
crawl-ref-1dc5deb5bc7fff6688670f19a76fdacae1136a6a.zip
Simplify summoning of hostile demons.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5566 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.h')
-rw-r--r--crawl-ref/source/spells2.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/spells2.h b/crawl-ref/source/spells2.h
index 4d4c01faa8..7296f0ad37 100644
--- a/crawl-ref/source/spells2.h
+++ b/crawl-ref/source/spells2.h
@@ -167,9 +167,10 @@ bool cast_summon_dragon(int pow, bool god_gift = false);
bool summon_minor_demon(int pow, bool god_gift = false);
-bool summon_demon(int pow, bool god_gift = false);
+bool summon_common_demon(int pow, bool god_gift = false);
-bool summon_specific_demon(monster_type mon, int pow, bool god_gift = false);
+bool summon_demon(monster_type mon, int pow, bool force_hostile = false,
+ bool quiet = false, bool permanent = false);
// last updated 24may2000 {dlb}