1
0
mirror of https://bitbucket.org/minetest_gamers/x_enchanting.git synced 2025-04-21 17:50:21 +02:00

3 Fix indentation

This commit is contained in:
Juraj Vajda 2023-02-26 10:42:06 -05:00
parent 4a0b45f472
commit c5c53b63ee

View File

@ -309,9 +309,9 @@ end
---Find element v of t satisfying f(v)
local function tableFind(t, f)
for _, v in ipairs(t) do
if f(v) then
return v
end
if f(v) then
return v
end
end
return nil