summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-08-03 19:33:50 -0400
committerNeil Moore <neil@s-z.org>2014-08-03 19:34:15 -0400
commitf68c32e264f3f32ed30a177f0118c6134391cffe (patch)
treeace55598d1e98a6ce89e40f06c123cee1fffa461 /crawl-ref/source/delay.cc
parent9858ce8f8c97380418f4b12eb725e7a9b81d5e3d (diff)
downloadcrawl-ref-f68c32e264f3f32ed30a177f0118c6134391cffe.tar.gz
crawl-ref-f68c32e264f3f32ed30a177f0118c6134391cffe.zip
Allow autosacrifice on altars and when silenced (minmay)
In the former case, without displaying the normal altar prompts.
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 2cfe33d0f0..692c498797 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -1296,7 +1296,7 @@ static void _handle_run_delays(const delay_queue_item &delay)
if (lev && lev->sacrificeable(you.pos()))
{
const interrupt_block block_interrupts;
- pray();
+ pray(false);
return;
}
}