From e04728f0424d4e42943fc187f295eb62a73bc5ce Mon Sep 17 00:00:00 2001 From: orwell Date: Mon, 23 Jun 2025 23:06:44 +0200 Subject: Get door closing time from wagon definition, no longer user configurable, and restore waitsig in stoprail atc command --- advtrains/trainlogic.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'advtrains/trainlogic.lua') diff --git a/advtrains/trainlogic.lua b/advtrains/trainlogic.lua index c0ac179..559c029 100644 --- a/advtrains/trainlogic.lua +++ b/advtrains/trainlogic.lua @@ -1048,6 +1048,7 @@ function advtrains.update_trainpart_properties(train_id, invert_flipstate) --FIX: deep-copy the table!!! train.max_speed=20 train.extent_h = 0; + train.door_operation_time = 1 local rel_pos=0 local count_l=0 @@ -1088,6 +1089,7 @@ function advtrains.update_trainpart_properties(train_id, invert_flipstate) train.max_speed=math.min(train.max_speed, wagon.max_speed) train.extent_h = math.max(train.extent_h, wagon.extent_h or 1); + train.door_operation_time = math.max(train.door_operation_time, wagon.door_operation_time or 2) end end train.trainlen = rel_pos -- cgit v1.2.3