diff options
author | Diego MartÃnez <kaeza@users.noreply.github.com> | 2017-03-01 07:31:48 -0300 |
---|---|---|
committer | Auke Kok <sofar+github@foo-projects.org> | 2017-03-14 21:57:01 -0700 |
commit | 196a6da26c7eaff3a6eab3dabe0ac27f6777681d (patch) | |
tree | 9c93a5f36f791cb1e306a1ff8262de892737a6dc /lightsensor.lua | |
parent | 5caacf3019e4c75603cb52df1f98e656304df541 (diff) |
Remove unused args.
Diffstat (limited to 'lightsensor.lua')
-rw-r--r-- | lightsensor.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lightsensor.lua b/lightsensor.lua index eaabcf6..1c7237b 100644 --- a/lightsensor.lua +++ b/lightsensor.lua @@ -21,7 +21,7 @@ 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) @@ -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) |