aboutsummaryrefslogtreecommitdiff
path: root/advtrains
diff options
context:
space:
mode:
authororwell <orwell@bleipb.de>2024-11-25 23:39:56 +0100
committerorwell <orwell@bleipb.de>2024-11-25 23:39:56 +0100
commit2bfc24ef27ea4098a93cc025b513afe1b8c4ee1f (patch)
tree7e7c455211aee066f6b8c00ff3309715d1b83543 /advtrains
parenta8d53ea2484463f7fc8329cb67b56e4d0f321dbd (diff)
downloadadvtrains-2bfc24ef27ea4098a93cc025b513afe1b8c4ee1f.tar.gz
advtrains-2bfc24ef27ea4098a93cc025b513afe1b8c4ee1f.tar.bz2
advtrains-2bfc24ef27ea4098a93cc025b513afe1b8c4ee1f.zip
Auto-assign signal to TCB if it finds one ahead of the influence point
Diffstat (limited to 'advtrains')
-rw-r--r--advtrains/helpers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/advtrains/helpers.lua b/advtrains/helpers.lua
index d7e691d..172cf07 100644
--- a/advtrains/helpers.lua
+++ b/advtrains/helpers.lua
@@ -578,7 +578,7 @@ local trackiter_mt = {
-- initial_pos: the initial track position of the track iterator
-- initial_connid: the connection index in which to traverse. If nil, adds a "branch" for every connection of the track (traverse in all directions)
-- limit: maximum distance from the start point after which the traverser stops
--- follow_all: if true, follows all branches at multi-connection tracks, even the ones pointing backwards or the crossing track on crossings. If false, follows only switches in driving direction.
+-- follow_all: NOT IMPLEMENTED (supposed: if true, follows all branches at multi-connection tracks, even the ones pointing backwards or the crossing track on crossings. If false, follows only switches in driving direction.)
-- Functions of the returned TrackIterator can be called via the Lua : notation, such as ti:next_track()
-- If only the main track needs to be followed, use only the ti:next_track() function and do not call ti:next_branch().