mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
Copy pos before giving it to on_blast because it can modify it; also remove a debug print that had nothing to do here
This commit is contained in:
parent
81259e9fcc
commit
aaa6c260cd
@ -81,11 +81,10 @@ local function destroy(drops, pos, cid)
|
||||
end
|
||||
local def = cid_data[cid]
|
||||
if def and def.on_blast then
|
||||
def.on_blast(pos, 1)
|
||||
def.on_blast(vector.new(pos), 1)
|
||||
return
|
||||
end
|
||||
if def and def.flammable then
|
||||
print(dump(def), dump(pos), cid)
|
||||
minetest.set_node(pos, fire_node)
|
||||
else
|
||||
minetest.remove_node(pos)
|
||||
|
Loading…
Reference in New Issue
Block a user