ipairs to pairs
This commit is contained in:
parent
b141f7c0a4
commit
95653a0676
|
@ -339,7 +339,7 @@ function minetest.handle_node_drops(pos, drops, digger)
|
||||||
end
|
end
|
||||||
|
|
||||||
if simple_drop then
|
if simple_drop then
|
||||||
for _, item in ipairs(simple_drop) do
|
for _, item in pairs(simple_drop) do
|
||||||
table.insert(drops, item)
|
table.insert(drops, item)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue