mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-15 06:50:18 +01:00
10 lines
217 B
Lua
10 lines
217 B
Lua
|
local table_set_all = moreblocks.util.table_set_all
|
||
|
|
||
|
moreblocks.resources.sounds = {}
|
||
|
|
||
|
if moreblocks.has.default then
|
||
|
table_set_all(moreblocks.resources.sounds, {
|
||
|
wood = default.node_sound_wood_defaults(),
|
||
|
})
|
||
|
end
|