Add missing sign

This commit is contained in:
teknomunk 2025-02-23 11:18:15 -06:00
parent 668b17bea6
commit 60b685903b
2 changed files with 6 additions and 6 deletions
mods/MAPGEN/mcl_structures

View file

@ -118,8 +118,8 @@ local cold = {
}
},
after_place = function(pos)
local minp = vector.offset(pos, -10, -4, 10)
local maxp = vector.offset(pos, 10, 2, 10)
local minp = vector.offset(pos, -10, -4, -10)
local maxp = vector.offset(pos, 10, 2, 10)
mcl_ocean.kelp.remove_kelp_below_structure(minp, maxp)
end,
}

View file

@ -173,8 +173,8 @@ mcl_structures.register_structure("shipwreck",{
}
},
after_place = function(pos)
local minp = vector.offset(pos, -20, -8, 20)
local maxp = vector.offset(pos, 20, 2, 20)
local minp = vector.offset(pos, -20, -8, -20)
local maxp = vector.offset(pos, 20, 2, 20)
mcl_ocean.kelp.remove_kelp_below_structure(minp, maxp)
end,
})
@ -211,8 +211,8 @@ mcl_structures.register_structure("ocean_temple",{
mcl_structures.spawn_mobs("mobs_mc:guardian_elder",spawnon,p1,p2,pr,1,true)
mcl_structures.construct_nodes(p1,p2,{"group:wall"})
local minp = vector.offset(p, -20, -4, 20)
local maxp = vector.offset(p, 20, 4, 20)
local minp = vector.offset(p, -20, -4, -20)
local maxp = vector.offset(p, 20, 4, 20)
mcl_ocean.kelp.remove_kelp_below_structure(minp, maxp)
end,
loot = {