From 327b12d488a7f001e21826a5b9e1df03af44c7ae Mon Sep 17 00:00:00 2001 From: orwell96 Date: Thu, 30 Mar 2017 21:59:30 +0200 Subject: Assert some variable types obtained from lua automation --- advtrains/advtrains_luaautomation/atc_rail.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'advtrains/advtrains_luaautomation/atc_rail.lua') diff --git a/advtrains/advtrains_luaautomation/atc_rail.lua b/advtrains/advtrains_luaautomation/atc_rail.lua index 141f119..ab84986 100644 --- a/advtrains/advtrains_luaautomation/atc_rail.lua +++ b/advtrains/advtrains_luaautomation/atc_rail.lua @@ -48,6 +48,7 @@ function r.fire_event(pos, evtdata) local customfct={ atc_send = function(cmd) if not train_id then return false end + assertt(cmd, "string") advtrains.atc.train_reset_command(train_id) train.atc_command=cmd train.atc_arrow=atc_arrow @@ -55,6 +56,7 @@ function r.fire_event(pos, evtdata) end, atc_reset = function(cmd) if not train_id then return false end + assertt(cmd, "string") advtrains.atc.train_reset_command(train_id) return true end, @@ -63,11 +65,13 @@ function r.fire_event(pos, evtdata) atc_speed = tvel, atc_set_text_outside = function(text) if not train_id then return false end + if text then assertt(text, "string") end advtrains.trains[train_id].text_outside=text return true end, atc_set_text_inside = function(text) if not train_id then return false end + if text then assertt(text, "string") end advtrains.trains[train_id].text_inside=text return true end, -- cgit v1.2.3