1
0
mirror of https://github.com/Uberi/Minetest-WorldEdit.git synced 2025-06-28 06:12:00 +02:00

Fix tab after space indentations

This commit is contained in:
HybridDog
2021-01-17 14:40:37 +01:00
committed by sfan5
parent eff01bc8e7
commit cc3aab00bc
3 changed files with 8 additions and 8 deletions

View File

@ -242,8 +242,8 @@ function worldedit.pyramid(pos, axis, height, node_name, hollow)
for index3 = -size, size do
local i = new_index2 + (index3 + offset[other2]) * stride[other2]
if (not hollow or size - math.abs(index2) < 2 or size - math.abs(index3) < 2) then
data[i] = node_id
count = count + 1
data[i] = node_id
count = count + 1
end
end
end