diff options
author | orwell96 <orwell@bleipb.de> | 2018-10-17 17:52:22 +0200 |
---|---|---|
committer | orwell96 <orwell@bleipb.de> | 2018-10-17 18:11:11 +0200 |
commit | cd38b17eabb8cdc37bd7e11a89fd0fd049910ffc (patch) | |
tree | c53253e996691583408b0fdad9679356571b5ae8 /advtrains_luaautomation/active_common.lua | |
parent | c6bef1c358af39c25e0def8aa374e4474a6e334c (diff) | |
download | advtrains-cd38b17eabb8cdc37bd7e11a89fd0fd049910ffc.tar.gz advtrains-cd38b17eabb8cdc37bd7e11a89fd0fd049910ffc.tar.bz2 advtrains-cd38b17eabb8cdc37bd7e11a89fd0fd049910ffc.zip |
Address H#60, H#17, M#18 and M#7
duplicate "message" to "msg"
make operation panel "cracky"
remove inexistent dtime_s parameter
add bones:bones to the list of not_blocking_trains nodes
Diffstat (limited to 'advtrains_luaautomation/active_common.lua')
-rw-r--r-- | advtrains_luaautomation/active_common.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/advtrains_luaautomation/active_common.lua b/advtrains_luaautomation/active_common.lua index d4cc0da..27255a3 100644 --- a/advtrains_luaautomation/active_common.lua +++ b/advtrains_luaautomation/active_common.lua @@ -115,7 +115,7 @@ function ac.run_in_env(pos, evtdata, customfct_p) customfct.interrupt=function(t, imesg) assertt(t, "number") assert(t >= 0) - atlatc.interrupt.add(t, pos, {type="int", int=true, message=imesg}) + atlatc.interrupt.add(t, pos, {type="int", int=true, message=imesg, msg=imesg}) --Compatiblity "message" field. end -- add digiline_send function, if digiline is loaded if minetest.global_exists("digiline") then |