From c335a65c62128ef67953f1a57a0a163f6de85f59 Mon Sep 17 00:00:00 2001 From: LeMagnesium Date: Mon, 29 Feb 2016 20:12:52 +0100 Subject: [PATCH] [coloredwood] Fix sound tables for wood and fences --- mods/coloredwood/fence.lua | 2 +- mods/coloredwood/wood.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/coloredwood/fence.lua b/mods/coloredwood/fence.lua index 486a61c..034e8e2 100755 --- a/mods/coloredwood/fence.lua +++ b/mods/coloredwood/fence.lua @@ -9,7 +9,7 @@ local neutral_block = "default:fence_wood" local colored_block_sunlight = "false" local colored_block_walkable = "true" local colored_block_groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2} -local colored_block_sound = "default.node_sound_wood_defaults()" +local colored_block_sound = default.node_sound_wood_defaults() for shade = 1, 3 do diff --git a/mods/coloredwood/wood.lua b/mods/coloredwood/wood.lua index e190132..d9bf19d 100755 --- a/mods/coloredwood/wood.lua +++ b/mods/coloredwood/wood.lua @@ -15,7 +15,7 @@ local neutral_block = "default:wood" local colored_block_sunlight = "false" local colored_block_walkable = "true" local colored_block_groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2} -local colored_block_sound = "default.node_sound_wood_defaults()" +local colored_block_sound = default.node_sound_wood_defaults() -- Show the wood planks in the crafting guide: -- Value copy the groups table to another one to pass to stairsplus:register_all()