diff --git a/mods/CORE/mcl_sounds/README.txt b/mods/CORE/mcl_sounds/README.txt index 9141c6daa..e773e7c86 100644 --- a/mods/CORE/mcl_sounds/README.txt +++ b/mods/CORE/mcl_sounds/README.txt @@ -35,8 +35,6 @@ Mito551 (sounds) (CC BY-SA 3.0): default_place_node.3.ogg default_place_node_hard.1.ogg default_place_node_hard.2.ogg - default_snow_footstep.1.ogg - default_snow_footstep.2.ogg default_hard_footstep.1.ogg default_hard_footstep.2.ogg default_hard_footstep.3.ogg @@ -76,3 +74,6 @@ Voxelands project (CC BY-SA 3.0) (Note: Artists from the Voxelands project include: sdzen, darkrose, sapier, Tom Peter, Telaron, juskiddink) + +Unknown authors (WTFPL): + pedology_snow_soft_footstep.*.ogg diff --git a/mods/CORE/mcl_sounds/init.lua b/mods/CORE/mcl_sounds/init.lua index 19c106f23..53b3650c5 100644 --- a/mods/CORE/mcl_sounds/init.lua +++ b/mods/CORE/mcl_sounds/init.lua @@ -74,9 +74,9 @@ end function mcl_sounds.node_sound_snow_defaults(table) table = table or {} table.footstep = table.footstep or - {name="default_snow_footstep", gain=0.5} + {name="pedology_snow_soft_footstep", gain=0.7} table.dug = table.dug or - {name="default_snow_footstep", gain=1.0} + {name="pedology_snow_soft_footstep", gain=1.0} table.dig = table.dig or {name="default_dig_crumbly", gain=1.0} table.place = table.place or diff --git a/mods/CORE/mcl_sounds/sounds/default_snow_footstep.1.ogg b/mods/CORE/mcl_sounds/sounds/default_snow_footstep.1.ogg deleted file mode 100644 index 3260b915f..000000000 Binary files a/mods/CORE/mcl_sounds/sounds/default_snow_footstep.1.ogg and /dev/null differ diff --git a/mods/CORE/mcl_sounds/sounds/default_snow_footstep.2.ogg b/mods/CORE/mcl_sounds/sounds/default_snow_footstep.2.ogg deleted file mode 100644 index 4aac1e7fa..000000000 Binary files a/mods/CORE/mcl_sounds/sounds/default_snow_footstep.2.ogg and /dev/null differ diff --git a/mods/CORE/mcl_sounds/sounds/default_snow_footstep.3.ogg b/mods/CORE/mcl_sounds/sounds/default_snow_footstep.3.ogg deleted file mode 100644 index cf4235b7b..000000000 Binary files a/mods/CORE/mcl_sounds/sounds/default_snow_footstep.3.ogg and /dev/null differ