summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 78c3f16467..518c0162c2 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -899,7 +899,7 @@ void interrupt_activity( activity_interrupt_type ai,
{
// Do we have a queued run delay? If we do, flush the delay queue
// so that stop running Lua notifications happen.
- for (int j = i + 1; j < size; ++j)
+ for (int j = i; j < size; ++j)
{
if (is_run_delay( you.delay_queue[j].type ))
{