summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-30 08:42:14 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-12-30 08:42:14 +0000
commita2bb75591fa8d41746c1f5827d883875a9f5479a (patch)
tree55c7b975afe42b9333d6e89eab135a122d1a3a6e /crawl-ref/source/abl-show.cc
parent9e60965993a1db7b6c5afc22f89eff0915950a9b (diff)
downloadcrawl-ref-a2bb75591fa8d41746c1f5827d883875a9f5479a.tar.gz
crawl-ref-a2bb75591fa8d41746c1f5827d883875a9f5479a.zip
GOD_GIFT flag wasn't getting set for Daevas and Angels.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@737 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 2f3ef943a8..25014497b9 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -921,7 +921,7 @@ bool activate_ability(void)
break;
case ABIL_ZIN_SUMMON_GUARDIAN:
- summon_ice_beast_etc(you.skills[SK_INVOCATIONS] * 4, MONS_ANGEL);
+ summon_ice_beast_etc(you.skills[SK_INVOCATIONS] * 4, MONS_ANGEL, true);
exercise(SK_INVOCATIONS, 8 + random2(10));
break;
@@ -953,7 +953,7 @@ bool activate_ability(void)
break;
case ABIL_TSO_SUMMON_DAEVA:
- summon_ice_beast_etc(you.skills[SK_INVOCATIONS] * 4, MONS_DAEVA);
+ summon_ice_beast_etc(you.skills[SK_INVOCATIONS] * 4, MONS_DAEVA, true);
exercise(SK_INVOCATIONS, 8 + random2(10));
break;