Add missing or incorrect sounds
This commit is contained in:
parent
73ecab26b9
commit
02e83f7425
@ -106,6 +106,8 @@ if minetest.settings:get_bool("music_enable") then
|
||||
fixed = {-4/16, -0.5, -4/16, 4/16, -0.5 + (4/16), 4/16}
|
||||
},
|
||||
|
||||
sounds = default.node_sound_defaults(),
|
||||
|
||||
on_construct = function(pos)
|
||||
music.start(pos)
|
||||
end,
|
||||
@ -166,6 +168,8 @@ else
|
||||
fixed = {-4/16, -0.5, -4/16, 4/16, -0.5 + (4/16), 4/16}
|
||||
},
|
||||
|
||||
sounds = default.node_sound_defaults(),
|
||||
|
||||
on_construct = function(pos)
|
||||
local meta = minetest.get_meta(pos)
|
||||
|
||||
|
@ -17,7 +17,7 @@ minetest.register_node(
|
||||
tiles = {"default_brick.png^default_book.png"},
|
||||
is_ground_content = false,
|
||||
groups = {dig_immediate = 2},
|
||||
sounds = default.node_sound_wood_defaults()
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node(
|
||||
@ -27,7 +27,7 @@ minetest.register_node(
|
||||
tiles = {"default_grass.png^default_book.png"},
|
||||
is_ground_content = false,
|
||||
groups = {dig_immediate = 2},
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
sounds = default.node_sound_dirt_defaults(),
|
||||
|
||||
on_construct = function(pos)
|
||||
minetest.remove_node(pos)
|
||||
|
Loading…
x
Reference in New Issue
Block a user