1
0
mirror of https://github.com/Sokomine/cottages.git synced 2026-01-14 13:05:30 +01:00

corrected bug with sounds

This commit is contained in:
Sokomine
2019-02-17 14:27:49 +01:00
parent bd257ee16e
commit 479e76b854
10 changed files with 47 additions and 38 deletions

View File

@@ -46,7 +46,7 @@ minetest.register_node("cottages:hay_mat", {
description = S("Some hay"),
tiles = {"cottages_darkage_straw.png^[multiply:#88BB88"},
groups = {hay=3, snappy=2, oddly_breakable_by_hand=2, flammable=3},
sounds = default.node_sound_wood_defaults,
sounds = cottages.sounds.leaves,
-- the bale is slightly smaller than a full node
is_ground_content = false,
node_box = {
@@ -73,7 +73,7 @@ minetest.register_node("cottages:hay", {
description = S("Hay"),
tiles = {"cottages_darkage_straw.png^[multiply:#88BB88"},
groups = {hay=3, snappy=2, oddly_breakable_by_hand=2, flammable=3},
sounds = default.node_sound_wood_defaults,
sounds = cottages.sounds.leaves,
is_ground_content = false,
})
@@ -85,7 +85,7 @@ minetest.register_node("cottages:hay_bale", {
tiles = {"cottages_darkage_straw_bale.png^[multiply:#88BB88"},
paramtype = "light",
groups = {hay=3, snappy=2, oddly_breakable_by_hand=2, flammable=3},
sounds = default.node_sound_wood_defaults,
sounds = cottages.sounds.leaves,
-- the bale is slightly smaller than a full node
node_box = {
type = "fixed",