summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-14 00:21:20 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-14 00:21:20 +0000
commitcb7ec291357aacf3f20b29b1971e64adbf93c476 (patch)
tree8c986d1a176d94d3fc1abcd6c0f25c9c64a028c3 /crawl-ref/source/abl-show.cc
parent9147f8005e3758db7e6ffaa684cc72e5fc30923d (diff)
downloadcrawl-ref-cb7ec291357aacf3f20b29b1971e64adbf93c476.tar.gz
crawl-ref-cb7ec291357aacf3f20b29b1971e64adbf93c476.zip
Mark daevas summoned by TSO's power as god gifts from TSO.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5802 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index c2226847d3..69c9ea6bd3 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -1400,7 +1400,7 @@ static bool _do_ability(const ability_def& abil)
const int pow = ( 2*skill_bump(SK_INVOCATIONS) + you.piety / 5 ) / 2;
start_delay(DELAY_RECITE, 3, pow, you.hp);
- exercise( SK_INVOCATIONS, 2 );
+ exercise(SK_INVOCATIONS, 2);
break;
}
@@ -1419,7 +1419,7 @@ static bool _do_ability(const ability_def& abil)
case ABIL_TSO_DIVINE_SHIELD:
cast_divine_shield();
- exercise( SK_INVOCATIONS, (coinflip()? 3 : 2) );
+ exercise(SK_INVOCATIONS, (coinflip() ? 3 : 2));
break;
case ABIL_TSO_CLEANSING_FLAME:
@@ -1427,7 +1427,7 @@ static bool _do_ability(const ability_def& abil)
return (false);
if (!zapping(ZAP_CLEANSING_FLAME, 20 + you.skills[SK_INVOCATIONS] * 6,
- beam, true))
+ beam, true))
{
return (false);
}
@@ -1435,7 +1435,7 @@ static bool _do_ability(const ability_def& abil)
break;
case ABIL_TSO_SUMMON_DAEVA:
- summon_daeva(you.skills[SK_INVOCATIONS] * 4);
+ summon_daeva(you.skills[SK_INVOCATIONS] * 4, GOD_SHINING_ONE);
exercise(SK_INVOCATIONS, 8 + random2(10));
break;