From 443ccefd20893023a45f9616d2956b3fa252b5e0 Mon Sep 17 00:00:00 2001 From: ywang Date: Wed, 10 Feb 2021 18:41:12 +0100 Subject: Fix A command after rebasing --- advtrains/atcjit.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'advtrains/atcjit.lua') diff --git a/advtrains/atcjit.lua b/advtrains/atcjit.lua index 6ce908b..708d035 100644 --- a/advtrains/atcjit.lua +++ b/advtrains/atcjit.lua @@ -16,10 +16,10 @@ command involves waiting, it should: argument and the error message as the second argument. ]] local matchptn = { - ["A[01FT]"] = function(match) + ["A([01FT])"] = function(_, match) return string.format( - "advtrains.interlocking.set_ars_disable(train,%s)", - (match=="0" or match=="F") and "true" or "false"), false + "train.ars_disable=%s", + (match=="0" or match=="F") and "true" or "false") end, ["BB"] = function() return [[do -- cgit v1.2.3