mirror of
https://github.com/minetest-mods/3d_armor.git
synced 2024-11-26 06:13:45 +01:00
Shields: Fix positional sound effects
This commit is contained in:
parent
c36b1e5fc4
commit
601fee1079
@ -13,9 +13,8 @@ local function play_sound_effect(player, name)
|
|||||||
if player then
|
if player then
|
||||||
local pos = player:getpos()
|
local pos = player:getpos()
|
||||||
if pos then
|
if pos then
|
||||||
minetest.sound_play({
|
minetest.sound_play(name, {
|
||||||
pos = pos,
|
pos = pos,
|
||||||
name = name,
|
|
||||||
max_hear_distance = 10,
|
max_hear_distance = 10,
|
||||||
gain = 0.5,
|
gain = 0.5,
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user