mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-24 01:40:29 +01:00
supply_converter: avoid crashes caused by wrong digiline message types (#397)
This commit is contained in:
parent
e056800cea
commit
37d49142cf
@ -72,6 +72,9 @@ local digiline_def = {
|
|||||||
receptor = {action = function() end},
|
receptor = {action = function() end},
|
||||||
effector = {
|
effector = {
|
||||||
action = function(pos, node, channel, msg)
|
action = function(pos, node, channel, msg)
|
||||||
|
if type(msg) ~= "string" then
|
||||||
|
return
|
||||||
|
end
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
if channel ~= meta:get_string("channel") then
|
if channel ~= meta:get_string("channel") then
|
||||||
return
|
return
|
||||||
@ -90,7 +93,7 @@ local digiline_def = {
|
|||||||
meta:set_int("enabled", 1)
|
meta:set_int("enabled", 1)
|
||||||
elseif msg == "toggle" then
|
elseif msg == "toggle" then
|
||||||
local onn = meta:get_int("enabled")
|
local onn = meta:get_int("enabled")
|
||||||
onn = -(onn-1) -- Mirror onn with pivot 0.5, so switch between 1 and 0.
|
onn = 1-onn -- Mirror onn with pivot 0.5, so switch between 1 and 0.
|
||||||
meta:set_int("enabled", onn)
|
meta:set_int("enabled", onn)
|
||||||
elseif msg:sub(1, 5) == "power" then
|
elseif msg:sub(1, 5) == "power" then
|
||||||
local power = tonumber(msg:sub(7))
|
local power = tonumber(msg:sub(7))
|
||||||
@ -103,6 +106,8 @@ local digiline_def = {
|
|||||||
meta:set_int("power", power)
|
meta:set_int("power", power)
|
||||||
elseif msg:sub(1, 12) == "mesecon_mode" then
|
elseif msg:sub(1, 12) == "mesecon_mode" then
|
||||||
meta:set_int("mesecon_mode", tonumber(msg:sub(14)))
|
meta:set_int("mesecon_mode", tonumber(msg:sub(14)))
|
||||||
|
else
|
||||||
|
return
|
||||||
end
|
end
|
||||||
set_supply_converter_formspec(meta)
|
set_supply_converter_formspec(meta)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user