modifications

This commit is contained in:
Vitaliy Olkhin 2024-09-16 16:23:01 +05:00
parent 3014589383
commit b87d0aa19c

View File

@ -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