mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-03-31 17:50:22 +02:00
20 lines
570 B
Lua
20 lines
570 B
Lua
--[[
|
|
More Blocks: sound definitions
|
|
|
|
Copyright © 2011-2021 Hugo Locurcio and contributors.
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
--]]
|
|
|
|
moreblocks.resources.sounds = {}
|
|
|
|
if moreblocks.has.default then
|
|
table.insert_all(moreblocks.resources.sounds, {
|
|
dirt = default.node_sound_dirt_defaults(),
|
|
glass = default.node_sound_glass_defaults(),
|
|
leaves = default.node_sound_leaves_defaults(),
|
|
metal = default.node_sound_metal_defaults(),
|
|
stone = default.node_sound_stone_defaults(),
|
|
wood = default.node_sound_wood_defaults(),
|
|
})
|
|
end
|