1
0
鏡像自 https://codeberg.org/tenplus1/mobs_monster.git 已同步 2025-09-18 13:20:43 +02:00

Fix lava pick output count

此提交包含在:
TenPlus1
2016-05-21 14:29:00 +01:00
父節點 1212d2a666
當前提交 f83ecdfdf9

查看文件

@@ -106,10 +106,9 @@ function minetest.handle_node_drops(pos, drops, digger)
table.insert(hot_drops,
ItemStack({
name = output.item:get_name(),
count = stack:get_count()
count = output.item:to_table().count,
})
)
else -- if not then return normal drops
table.insert(hot_drops, stack)
end