summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-25 11:56:07 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-09-25 11:56:07 -0500
commit4b6064557297acb3fc1fa967d6124fa50be48836 (patch)
treea2c55a7095f6bacdfc453af800e1941f28dd0e6f /crawl-ref/source/spells3.cc
parentc4d63c569f7146d653ec48ce363bc0562b186b1b (diff)
downloadcrawl-ref-4b6064557297acb3fc1fa967d6124fa50be48836.tar.gz
crawl-ref-4b6064557297acb3fc1fa967d6124fa50be48836.zip
And add more consistency fixes.
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 17f1d25172..cf32fb3905 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -1726,12 +1726,14 @@ bool cast_sanctuary(const int power)
viewwindow(true, false);
holy_word(100, HOLY_WORD_ZIN, you.pos(), true);
+
#ifndef USE_TILE
+ // Allow extra time for the flash to linger.
delay(1000);
#endif
env.sanctuary_pos = you.pos();
- env.sanctuary_time = 7 + you.skills[SK_INVOCATIONS]/2;
+ env.sanctuary_time = 7 + you.skills[SK_INVOCATIONS] / 2;
// Pets stop attacking and converge on you.
you.pet_target = MHITYOU;