Skip to content

Commit

Permalink
Remove call fire sound on placing and removing blue flame (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladtcvs authored Nov 6, 2021
1 parent 3e74f04 commit d6af069
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mods/_lott/lottother/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,13 @@ minetest.register_node("lottother:blue_flame", {
damage_per_second = 4,

after_place_node = function(pos, placer)
fire.on_flame_add_at(pos)
-- Removed in new MTG/fire : issue 479
--fire.on_flame_add_at(pos)
end,

after_dig_node = function(pos, oldnode, oldmetadata, digger)
fire.on_flame_remove_at(pos)
-- Removed in new MTG/fire : issue 479
--fire.on_flame_remove_at(pos)
end,
})

Expand Down

0 comments on commit d6af069

Please sign in to comment.