1
0
Fork 0

Merge pull request 'Fix wrong argument when piston dig calls on_dignode callbacks (Credit: Cora)' (#4089) from bamboo_crash_fix into master

Reviewed-on: MineClone2/MineClone2#4089
Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land>
This commit is contained in:
ancientmarinerdev 2023-12-20 21:28:07 +00:00
commit 5071855d00
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ function mesecon.mvps_push_or_pull(pos, stackdir, movedir, maximum, player_name,
local counted_drops = {}
minetest.remove_node(n.pos)
for _, callback in pairs(minetest.registered_on_dignodes) do
callback(n.pos, n)
callback(n.pos, n.node)
end
for _, item in ipairs(drops) do
if type(item) ~= "string" then