From b87d0aa19cef0b0118c6496e2e6c81e0f7c84f93 Mon Sep 17 00:00:00 2001 From: Vitaliy Olkhin Date: Mon, 16 Sep 2024 16:23:01 +0500 Subject: [PATCH] modifications --- dimensions.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dimensions.lua b/dimensions.lua index 7e61c7e..9a38ce6 100644 --- a/dimensions.lua +++ b/dimensions.lua @@ -2461,7 +2461,7 @@ minetest.register_lbm({ run_at_every_load = true, nodenames = {"default:ice", "space_travel:irradiated_ice"}, action = function(pos, node) - if pos.y >= 12200 and pos.y < 12300 then + if pos.y >= space_travel.europa + 200 and pos.y < space_travel.europa + 300 then minetest.set_node(pos, {name = "space_travel:europa_water_source"}) end end, @@ -2473,7 +2473,7 @@ minetest.register_lbm({ run_at_every_load = true, nodenames = {"default:ice", "space_travel:irradiated_ice"}, action = function(pos, node) - if pos.y >= 12068 and pos.y < 12200 then + if pos.y >= space_travel.europa + 68 and pos.y < space_travel.europa + 200 then minetest.set_node(pos, {name = "space_travel:space_stone"}) end end, @@ -2487,7 +2487,7 @@ minetest.register_abm({ chance = 2, -- Select every 1 in 2 nodes action = function(pos, node, active_object_count, active_object_count_wider) local pos = {x = pos.x, y = pos.y + 1, z = pos.z} - if pos.y == 14006 then --minetest.get_node(pos) == "air" then + if pos.y == space_travel.titan - 494 then --minetest.get_node(pos) == "air" then minetest.set_node(pos, {name = "space_travel:titan_alien_crystal"}) end end