mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-03-11 06:07:44 +01:00
Add missing 'local' to variables
This commit is contained in:
parent
a394e13ed7
commit
3c684a870b
1 changed files with 2 additions and 2 deletions
|
@ -3460,8 +3460,8 @@ local corals = {
|
|||
|
||||
local function clear_kelp(t, minp, maxp, blockseed)
|
||||
for _,pos in pairs(t) do
|
||||
pos_minp = vector.offset(pos, -4, -4, -4)
|
||||
pos_maxp = vector.offset(pos, 4, 2, 4)
|
||||
local pos_minp = vector.offset(pos, -4, -4, -4)
|
||||
local pos_maxp = vector.offset(pos, 4, 2, 4)
|
||||
mcl_ocean.kelp.remove_kelp_below_structure(pos_minp, pos_maxp)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue