Update master #1

Merged
THE-NERD2 merged 296 commits from VoxeLibre/VoxeLibre:master into master 2024-11-21 19:51:04 +01:00
1 changed files with 35 additions and 42 deletions
Showing only changes of commit 0752ed17d8 - Show all commits

View File

@ -57,46 +57,43 @@ minetest.register_abm({
-- --
-- Papyrus and cactus growing -- Papyrus and cactus growing
-- --
function grow_cactus(pos, node)
-- Functions pos.y = pos.y - 1 -- below
function mcl_core.grow_cactus(pos, node) if minetest.get_item_group(minetest.get_node(pos).name, "sand") == 0 then return end
pos.y = pos.y-1 pos.y = pos.y + 2 -- above
local name = minetest.get_node(pos).name local above = minetest.get_node(pos).name
if minetest.get_item_group(name, "sand") ~= 0 then if above == "air" then
pos.y = pos.y+1 minetest.set_node(pos, {name="mcl_core:cactus"})
local height = 0 return
while minetest.get_node(pos).name == "mcl_core:cactus" and height < 4 do
height = height+1
pos.y = pos.y+1
end end
if height < 3 then if above ~= "mcl_core:cactus" then return end
pos.y = pos.y + 1 -- at max height 3
if minetest.get_node(pos).name == "air" then if minetest.get_node(pos).name == "air" then
minetest.set_node(pos, {name="mcl_core:cactus"}) minetest.set_node(pos, {name="mcl_core:cactus"})
end end
end end
end
end
function mcl_core.grow_reeds(pos, node) function grow_reeds(pos, node)
pos.y = pos.y-1 pos.y = pos.y - 1 -- below
local name = minetest.get_node(pos).name if minetest.get_item_group(minetest.get_node(pos).name, "soil_sugarcane") == 0 then return end
if minetest.get_item_group(name, "soil_sugarcane") ~= 0 then pos.y = pos.y + 2 -- above
if minetest.find_node_near(pos, 1, {"group:water"}) == nil and minetest.find_node_near(pos, 1, {"group:frosted_ice"}) == nil then local above = minetest.get_node(pos).name
if above == "air" then
pos.y = pos.y - 1 -- original position, check for water
if minetest.find_node_near(pos, 1, {"group:water", "group:frosted_ice"}) == nil then return end
pos.y = pos.y + 1 -- above
minetest.set_node(pos, {name="mcl_core:reeds"})
return return
end end
pos.y = pos.y+1 if above ~= "mcl_core:reeds" then return end
local height = 0 pos.y = pos.y + 1 -- at max height 3
while minetest.get_node(pos).name == "mcl_core:reeds" and height < 3 do
height = height+1
pos.y = pos.y+1
end
if height < 3 then
if minetest.get_node(pos).name == "air" then if minetest.get_node(pos).name == "air" then
pos.y = pos.y - 2 -- original position, check for water
if minetest.find_node_near(pos, 1, {"group:water", "group:frosted_ice"}) == nil then return end
pos.y = pos.y + 2 -- above
minetest.set_node(pos, {name="mcl_core:reeds"}) minetest.set_node(pos, {name="mcl_core:reeds"})
end end
end end
end
end
-- ABMs -- ABMs
@ -192,9 +189,7 @@ minetest.register_abm({
neighbors = {"group:sand"}, neighbors = {"group:sand"},
interval = 25, interval = 25,
chance = 40, chance = 40,
action = function(pos) action = grow_cactus
mcl_core.grow_cactus(pos)
end,
}) })
local function is_walkable(pos) local function is_walkable(pos)
@ -239,10 +234,8 @@ minetest.register_abm({
nodenames = {"mcl_core:reeds"}, nodenames = {"mcl_core:reeds"},
neighbors = {"group:soil_sugarcane"}, neighbors = {"group:soil_sugarcane"},
interval = 25, interval = 25,
chance = 10, chance = 40,
action = function(pos) action = grow_reeds
mcl_core.grow_reeds(pos)
end,
}) })
-- --