From 907e8bf6a64215a516fdf16869dd81248aeaa2f6 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 17 Mar 2017 16:53:18 -0400 Subject: update digilines, technic, unified inventory, and switched castles to the new modpack form --- digilines/lightsensor.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'digilines/lightsensor.lua') diff --git a/digilines/lightsensor.lua b/digilines/lightsensor.lua index 86a29c9..1c7237b 100644 --- a/digilines/lightsensor.lua +++ b/digilines/lightsensor.lua @@ -21,11 +21,11 @@ local lsensor_selbox = fixed = {{ -8/16, -8/16, -8/16, 8/16, -3/16, 8/16 }} } -local on_digiline_receive = function (pos, node, channel, msg) +local on_digiline_receive = function (pos, _, channel, msg) local setchan = minetest.get_meta(pos):get_string("channel") if channel == setchan and msg == GET_COMMAND then local lightval = minetest.get_node_light(pos) - digiline:receptor_send(pos, digiline.rules.default, channel, lightval) + digilines.receptor_send(pos, digilines.rules.default, channel, lightval) end end @@ -39,7 +39,7 @@ minetest.register_node("digilines:lightsensor", { groups = {dig_immediate=2}, selection_box = lsensor_selbox, node_box = lsensor_nodebox, - digiline = + digiline = { receptor = {}, effector = { @@ -50,7 +50,7 @@ minetest.register_node("digilines:lightsensor", { local meta = minetest.get_meta(pos) meta:set_string("formspec", "field[channel;Channel;${channel}]") end, - on_receive_fields = function(pos, formname, fields, sender) + on_receive_fields = function(pos, _, fields, sender) local name = sender:get_player_name() if minetest.is_protected(pos, name) and not minetest.check_player_privs(name, {protection_bypass=true}) then minetest.record_protection_violation(pos, name) -- cgit v1.2.3