Minor change in order
This commit is contained in:
parent
1bf0b9b834
commit
17d7164d5b
20
init.lua
20
init.lua
@ -135,16 +135,6 @@ function sounds.node_sand(tbl)
|
||||
return tbl
|
||||
end
|
||||
|
||||
function sounds.node_stone(tbl)
|
||||
tbl = tbl or {}
|
||||
|
||||
tbl.footstep = tbl.footstep or {name="sounds_step_hard", gain=0.3}
|
||||
tbl.dug = tbl.dug or {name="sounds_step_hard", gain=1.0}
|
||||
|
||||
sounds.node(tbl)
|
||||
return tbl
|
||||
end
|
||||
|
||||
function sounds.node_snow(tbl)
|
||||
tbl = tbl or {}
|
||||
|
||||
@ -157,6 +147,16 @@ function sounds.node_snow(tbl)
|
||||
return tbl
|
||||
end
|
||||
|
||||
function sounds.node_stone(tbl)
|
||||
tbl = tbl or {}
|
||||
|
||||
tbl.footstep = tbl.footstep or {name="sounds_step_hard", gain=0.3}
|
||||
tbl.dug = tbl.dug or {name="sounds_step_hard", gain=1.0}
|
||||
|
||||
sounds.node(tbl)
|
||||
return tbl
|
||||
end
|
||||
|
||||
function sounds.node_water(tbl)
|
||||
tbl = tbl or {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user