forked from minetest-mods/technic
assume missing "enabled" key == enabled also.
(would signify supply converts in old maps)
This commit is contained in:
parent
0a701a0dcf
commit
6341ac9638
|
@ -68,7 +68,7 @@ local run = function(pos, node, run_stage)
|
|||
-- Machine information
|
||||
local machine_name = S("Supply Converter")
|
||||
local meta = minetest.get_meta(pos)
|
||||
local enabled = meta:get_int("enabled") ~= 0 and (meta:get_int("mesecon_mode") == 0 or meta:get_int("mesecon_effect") ~= 0)
|
||||
local enabled = meta:get_string("enabled") ~= "0" and (meta:get_int("mesecon_mode") == 0 or meta:get_int("mesecon_effect") ~= 0)
|
||||
local demand = enabled and meta:get_int("power") or 0
|
||||
|
||||
local pos_up = {x=pos.x, y=pos.y+1, z=pos.z}
|
||||
|
|
Loading…
Reference in New Issue
Block a user