TechDudie
2021-02-09 43acec290067f9aca534647d46ba1f13cfeb377a
technic/machines/LV/geothermal.lua
@@ -22,12 +22,12 @@
minetest.register_craftitem("technic:geothermal", {
   description = S("Geothermal %s Generator"):format("LV"),
})
})
local check_node_around = function(pos)
   local node = minetest.get_node(pos)
   if node.name == "default:water_source" or node.name == "default:water_flowing" then return 1 end
   if node.name == "default:lava_source"  or node.name == "default:lava_flowing"  then return 2 end
   if node.name == "default:lava_source"  or node.name == "default:lava_flowing"  then return 2 end
   return 0
end