fix bazalt_breaker with infinite items enabled

This commit is contained in:
MihailRis 2025-02-17 16:58:03 +03:00
parent bbfc0dbf17
commit 5384843892

View File

@ -1,4 +1,6 @@
function on_block_break_by(x, y, z, pid)
block.set(x, y, z, 0, 0)
if not player.is_infinite_items(pid) then
inventory.use(player.get_inventory(pid))
end
end