Skip to content

Commit 49a8ddc

Browse files
committedAug 22, 2014
Make sand and some leaves sounds quieter
1 parent 11c04e9 commit 49a8ddc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

Diff for: ‎mods/default/functions.lua

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ end
4040
function default.node_sound_sand_defaults(table)
4141
table = table or {}
4242
table.footstep = table.footstep or
43-
{name="default_sand_footstep", gain=0.5}
43+
{name="default_sand_footstep", gain=0.2}
4444
table.dug = table.dug or
45-
{name="default_sand_footstep", gain=1.0}
45+
{name="default_sand_footstep", gain=0.4}
4646
table.place = table.place or
4747
{name="default_place_node", gain=1.0}
4848
default.node_sound_defaults(table)
@@ -64,7 +64,7 @@ function default.node_sound_leaves_defaults(table)
6464
table.footstep = table.footstep or
6565
{name="default_grass_footstep", gain=0.35}
6666
table.dug = table.dug or
67-
{name="default_grass_footstep", gain=0.85}
67+
{name="default_grass_footstep", gain=0.7}
6868
table.dig = table.dig or
6969
{name="default_dig_crumbly", gain=0.4}
7070
table.place = table.place or

0 commit comments

Comments
 (0)
Please sign in to comment.