Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Default: Add function 'node_sound_gravel_defaults()'
- Loading branch information
Showing
with
13 additions
and
4 deletions.
-
+12
−0
mods/default/functions.lua
-
+1
−4
mods/default/nodes.lua
|
@@ -49,6 +49,18 @@ function default.node_sound_sand_defaults(table) |
|
|
return table |
|
|
end |
|
|
|
|
|
function default.node_sound_gravel_defaults(table) |
|
|
table = table or {} |
|
|
table.footstep = table.footstep or |
|
|
{name = "default_gravel_footstep", gain = 0.5} |
|
|
table.dug = table.dug or |
|
|
{name = "default_gravel_footstep", gain = 1.0} |
|
|
table.place = table.place or |
|
|
{name = "default_place_node", gain = 1.0} |
|
|
default.node_sound_defaults(table) |
|
|
return table |
|
|
end |
|
|
|
|
|
function default.node_sound_wood_defaults(table) |
|
|
table = table or {} |
|
|
table.footstep = table.footstep or |
|
|
|
@@ -353,10 +353,7 @@ minetest.register_node("default:gravel", { |
|
|
description = "Gravel", |
|
|
tiles = {"default_gravel.png"}, |
|
|
groups = {crumbly = 2, falling_node = 1}, |
|
|
sounds = default.node_sound_dirt_defaults({ |
|
|
footstep = {name = "default_gravel_footstep", gain = 0.5}, |
|
|
dug = {name = "default_gravel_footstep", gain = 1.0}, |
|
|
}), |
|
|
sounds = default.node_sound_gravel_defaults(), |
|
|
drop = { |
|
|
max_items = 1, |
|
|
items = { |
|
|