Add collector state options to the Mesecons output

This commit is contained in:
cheapie 2024-04-27 14:43:23 -05:00
parent 6f8ba2d5db
commit 21574f2a67

View File

@ -138,6 +138,22 @@ local outputoptions = {
end,
needsfloor = false,
},
{
id = "collectorup",
desc = "Collecting Up Calls",
func = function(mem)
return (mem.carstate == "normal" and mem.direction == "up")
end,
needsfloor = false,
},
{
id = "collectordown",
desc = "Collecting Down Calls",
func = function(mem)
return (mem.carstate == "normal" and mem.direction == "down")
end,
needsfloor = false,
},
{
id = "lightsw",
desc = "Car Light Switch",