From 6a2fa5a3e49ce3612e857b39a0c12ea8420e6795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Mart=C3=ADnez?= Date: Wed, 1 Mar 2017 00:57:58 -0300 Subject: Rename global table to `digilines`. This also adds a backwards compat alias so other mods shouldn't break. --- init.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index bffd4e7..7f9696e 100644 --- a/init.lua +++ b/init.lua @@ -1,4 +1,8 @@ -digiline = {} + +digilines = {} + +-- Backwards compat. +rawset(_G, "digiline", digilines) local modpath = minetest.get_modpath("digilines") dofile(modpath .. "/presetrules.lua") @@ -7,12 +11,12 @@ dofile(modpath .. "/internal.lua") dofile(modpath .. "/wires_common.lua") dofile(modpath .. "/wire_std.lua") -function digiline:receptor_send(pos, rules, channel, msg) +function digilines:receptor_send(pos, rules, channel, msg) local checked = {} checked[minetest.hash_node_position(pos)] = true -- exclude itself for _,rule in ipairs(rules) do - if digiline:rules_link(pos, digiline:addPosRule(pos, rule)) then - digiline:transmit(digiline:addPosRule(pos, rule), channel, msg, checked) + if digilines:rules_link(pos, digilines:addPosRule(pos, rule)) then + digilines:transmit(digilines:addPosRule(pos, rule), channel, msg, checked) end end end -- cgit v1.2.3