blob: 3ddbf0fd665cd2ab606c0040466eb8288ccfad73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local outline = ""
local outrc = ""
if event.type=="train" then
if atc_arrow then
atc_send("OC")
atc_set_text_outside("")
atc_set_text_inside("")
set_rc("")
set_line("")
else
if outline then set_line(outline) end
if outrc then set_rc(outrc) end
atc_set_text_outside("Not in service")
end
--unset_shunt()
end
|