Delete 'mods/door_breaking.lua'

This commit is contained in:
thunderdog1138 2020-11-20 18:29:32 +00:00
parent 48b301ca18
commit 94e72bfe0f
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
if minetest.get_modpath("doors") then
minetest.override_item("doors:door_wood_a", {
on_timer = function(pos)
minetest.swap_node(pos, {name = "air"})
minetest.add_item(pos, "default:wood 5")
minetest.sound_play("rangedweapons_woodbreak",{pos})
end,
})
minetest.override_item("doors:door_wood_b", {
on_timer = function(pos)
minetest.swap_node(pos, {name = "air"})
minetest.add_item(pos, "default:wood 5")
minetest.sound_play("rangedweapons_woodbreak",{pos})
end,
})
end