diff options
author | cheapie <no-email-for-you@example.com> | 2024-05-09 20:32:22 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2024-05-09 20:32:22 -0500 |
commit | b6d08e6997adc71bdf50505cffe0d00495a3cdaa (patch) | |
tree | bf37dd646d7c7ea0e32258db309af770fa83f6dd /init.lua | |
parent | b18fa482b5dba5dc2ea48df7bb1202a80e587e91 (diff) | |
download | techage_db_compat-b6d08e6997adc71bdf50505cffe0d00495a3cdaa.tar techage_db_compat-b6d08e6997adc71bdf50505cffe0d00495a3cdaa.tar.gz techage_db_compat-b6d08e6997adc71bdf50505cffe0d00495a3cdaa.tar.bz2 techage_db_compat-b6d08e6997adc71bdf50505cffe0d00495a3cdaa.tar.xz techage_db_compat-b6d08e6997adc71bdf50505cffe0d00495a3cdaa.zip |
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -1,6 +1,15 @@ if minetest.setting_getbool("gloopblocks_lavacooling") ~= false then --This part comes directly from gloopblocks, just running it here again in case techage changed it --(it may or may not depending on load order) + local gloopblocks_search_nearby_nodes = function(pos, node) + if minetest.get_node({x=pos.x-1, y=pos.y, z=pos.z}).name == node then return true end + if minetest.get_node({x=pos.x+1, y=pos.y, z=pos.z}).name == node then return true end + if minetest.get_node({x=pos.x, y=pos.y-1, z=pos.z}).name == node then return true end + if minetest.get_node({x=pos.x, y=pos.y+1, z=pos.z}).name == node then return true end + if minetest.get_node({x=pos.x, y=pos.y, z=pos.z-1}).name == node then return true end + if minetest.get_node({x=pos.x, y=pos.y, z=pos.z+1}).name == node then return true end + return false + end default.cool_lava = function(pos, node) if node.name == "default:lava_source" then if gloopblocks_search_nearby_nodes(pos,"default:water_source") |