ipairs to pairs

This commit is contained in:
JoseDouglas26 2024-08-04 09:59:27 -03:00 committed by teknomunk
parent b141f7c0a4
commit 95653a0676

View File

@ -339,7 +339,7 @@ function minetest.handle_node_drops(pos, drops, digger)
end
if simple_drop then
for _, item in ipairs(simple_drop) do
for _, item in pairs(simple_drop) do
table.insert(drops, item)
end
end