summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index f036bacb06..35ff9d6c22 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -539,10 +539,11 @@ void game_options::set_default_activity_interrupts()
"interrupt_run = interrupt_travel, message",
"interrupt_rest = interrupt_run, full_hp, full_mp",
- // Stair ascents/descents cannot be interrupted, attempts to interrupt
- // the delay will just trash all queued delays, including travel.
- "interrupt_ascending_stairs =",
- "interrupt_descending_stairs =",
+ // Stair ascents/descents cannot be interrupted except by
+ // teleportation. Attempts to interrupt the delay will just
+ // trash all queued delays, including travel.
+ "interrupt_ascending_stairs = teleport",
+ "interrupt_descending_stairs = teleport",
"interrupt_recite = teleport",
"interrupt_uninterruptible =",
"interrupt_weapon_swap =",