mirror of
https://github.com/minetest/minetest_game.git
synced 2025-06-29 13:20:25 +02:00
Default: Add water footstep sounds
Plus one silent sound to break repetition 'default_water_footstep.4.ogg'.
This commit is contained in:
@ -109,6 +109,14 @@ function default.node_sound_metal_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
function default.node_sound_water_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name = "default_water_footstep", gain = 0.2}
|
||||
default.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
--
|
||||
-- Lavacooling
|
||||
--
|
||||
|
Reference in New Issue
Block a user