1
0
mirror of https://github.com/davisonio/colouredstonebricks.git synced 2025-07-16 15:30:21 +02:00

Sound stone for bricks

This commit is contained in:
Jat15
2017-08-27 20:59:42 +02:00
committed by GitHub
parent 6b42cc8213
commit d6824dd8de

View File

@ -25,7 +25,7 @@ for _, row in ipairs(colours) do
description = description.." Stone Brick",
tiles = {"colouredstonebricks_"..name..".png"},
groups = {cracky=3},
sounds = default.node_sound_defaults(),
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
@ -42,7 +42,7 @@ for _, row in ipairs(colours) do
description = description.." Stone Brick",
tiles = {"colouredstonebricks_"..name..".png"},
groups = {cracky=3},
sounds = default.node_sound_defaults(),
sounds = default.node_sound_stone_defaults(),
sunlight_propagates = true,
})
end