mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-10 02:01:07 +01:00
ipairs to pairs
This commit is contained in:
parent
b141f7c0a4
commit
95653a0676
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue