diff --git a/mods/shooter/shooter.lua b/mods/shooter/shooter.lua index e81671e..2aba516 100644 --- a/mods/shooter/shooter.lua +++ b/mods/shooter/shooter.lua @@ -373,7 +373,7 @@ function shooter:blast(pos, radius, fleshy, distance, user) local pos = vector.round(pos) local p1 = vector.subtract(pos, radius) local p2 = vector.add(pos, radius) - minetest.sound_play("tnt_explode", {pos=pos, gain=1}) + minetest.sound_play("shooter_explode", {pos=pos, gain=1}) if SHOOTER_ALLOW_NODES and SHOOTER_ENABLE_BLASTING then if SHOOTER_ENABLE_PROTECTION then if not minetest.is_protected(pos, name) then diff --git a/mods/shooter/sounds/shooter_explode.ogg b/mods/shooter/sounds/shooter_explode.ogg new file mode 100644 index 0000000..a414ea0 Binary files /dev/null and b/mods/shooter/sounds/shooter_explode.ogg differ