summaryrefslogtreecommitdiffstats
path: root/crawl-ref/docs/options_guide.txt
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-10-13 18:12:47 -0700
committerMatthew Cline <zelgadis@sourceforge.net>2009-10-13 18:12:47 -0700
commit91527afd3e9c0e92ddb79cdc63e89ccf2fa536fe (patch)
tree0f1a2fa32e71404f18b1757cac3dcb236bc557c5 /crawl-ref/docs/options_guide.txt
parent325031f16090a6e875890c27854be77167e8b268 (diff)
downloadcrawl-ref-91527afd3e9c0e92ddb79cdc63e89ccf2fa536fe.tar.gz
crawl-ref-91527afd3e9c0e92ddb79cdc63e89ccf2fa536fe.zip
New option explore_delay, which lets you make the delay between auto-explore
moves be different than the delay between the moves of other types of travel. By default (explore_delay == -1) the auto-explore delay is the same as travel_delay, preserving the old behaviour.
Diffstat (limited to 'crawl-ref/docs/options_guide.txt')
-rw-r--r--crawl-ref/docs/options_guide.txt17
1 files changed, 13 insertions, 4 deletions
diff --git a/crawl-ref/docs/options_guide.txt b/crawl-ref/docs/options_guide.txt
index e8b8bed767..50874506e5 100644
--- a/crawl-ref/docs/options_guide.txt
+++ b/crawl-ref/docs/options_guide.txt
@@ -46,7 +46,7 @@ The contents of this text are:
symmetric_scroll, scroll_margin_x, scroll_margin_y,
scroll_margin
4-g Travel and Exploration.
- travel_delay, travel_avoid_terrain,
+ travel_delay, explore_delay, travel_avoid_terrain,
explore_greedy, explore_stop, explore_improved,
tc_reachable, tc_dangerous, tc_disconnected,
tc_excluded, tc_exclude_circle, travel_stop_message,
@@ -775,9 +775,18 @@ scroll_margin = 2
-------------------------------
travel_delay = 20
- How long travel waits after each move (milliseconds). Depends on
- platform. Setting to -1 will jump to end of travel - you will
- not see the individual moves.
+ How long travel waits after each move (milliseconds), and also
+ how long auto-explore waits after each move unless explore_delay
+ is set. Depends on platform. Setting to -1 will jump to end of
+ travel - you will not see the individual moves.
+
+explore_delay = -1
+ How long auto-explore waits after each move (milliseconds). Depends on
+ platform. In particular, setting travel_delay = -1 and
+ explore_delay = 20 means you will see the invividual moves of
+ autoexplore, but not the invidivual moves of other forms of travel.
+ Setting to -1 means the auto-explore delay will be the same as
+ travel_delay.
travel_avoid_terrain = (shallow water | deep water)
Prevent travel from routing through shallow water. By default,