1
0
Fork 0

Merge pull request 'Make shield block sounds not play across infinite distance' (#3629) from shield_sound_distance into master

Reviewed-on: MineClone2/MineClone2#3629
Reviewed-by: ancientmarinerdev <ancientmariner_dev@proton.me>
This commit is contained in:
ancientmarinerdev 2023-04-11 17:37:54 +00:00
commit 20638c482d
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ mcl_damage.register_modifier(function(obj, damage, reason)
mcl_inventory.update_inventory_formspec(obj)
end
end
minetest.sound_play({name = "mcl_block"})
minetest.sound_play({name = "mcl_block"}, {pos = obj:get_pos(), max_hear_distance = 16})
return 0
end)