Sound stone for bricks (#9)

This commit is contained in:
Jat15 2017-08-27 21:08:26 +02:00 committed by Craig Davison
parent 0655c20564
commit f9ad052b23
1 changed files with 2 additions and 2 deletions

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