moreblocks/resources/sounds.lua
2022-06-11 18:17:41 -07:00

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