mirror of
https://github.com/minetest-mods/digilines.git
synced 2025-07-03 16:50:44 +02:00
Update deprecated api calls
This commit is contained in:
@ -22,9 +22,9 @@ local lsensor_selbox =
|
||||
}
|
||||
|
||||
local on_digiline_receive = function (pos, node, channel, msg)
|
||||
local setchan = minetest.env:get_meta(pos):get_string("channel")
|
||||
local setchan = minetest.get_meta(pos):get_string("channel")
|
||||
if channel == setchan and msg == GET_COMMAND then
|
||||
local lightval = minetest.env:get_node_light(pos)
|
||||
local lightval = minetest.get_node_light(pos)
|
||||
digiline:receptor_send(pos, digiline.rules.default, channel, lightval)
|
||||
end
|
||||
end
|
||||
@ -46,11 +46,11 @@ minetest.register_node("digilines_lightsensor:lightsensor", {
|
||||
},
|
||||
},
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
meta:set_string("formspec", "field[channel;Channel;${channel}]")
|
||||
end,
|
||||
on_receive_fields = function(pos, formname, fields, sender)
|
||||
local meta = minetest.env:get_meta(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
fields.channel = fields.channel or ""
|
||||
meta:set_string("channel", fields.channel)
|
||||
end,
|
||||
|
Reference in New Issue
Block a user