atc_reset(): Removed unused string parameter and also clear ATC autocouple flag (Cpl)

Fixes H#189 and H#190
master
orwell96 2021-12-31 16:04:04 +01:00
parent 78e0c650e3
commit ef8391a60d
2 changed files with 2 additions and 2 deletions

View File

@ -93,6 +93,7 @@ function atc.train_reset_command(train, keep_tarvel)
train.atc_delay=nil
train.atc_brake_target=nil
train.atc_wait_finish=nil
train.atc_wait_autocouple=nil
train.atc_arrow=nil
if not keep_tarvel then
train.tarvelocity=nil

View File

@ -130,9 +130,8 @@ function r.fire_event(pos, evtdata, appr_internal)
get_rc = function()
return train.routingcode
end,
atc_reset = function(cmd)
atc_reset = function()
if not train_id then return false end
assertt(cmd, "string")
advtrains.atc.train_reset_command(train)
return true
end,