diff --git a/system/crush_nodes.lua b/system/crush_nodes.lua index 8e3a38e..8874154 100644 --- a/system/crush_nodes.lua +++ b/system/crush_nodes.lua @@ -1,18 +1,21 @@ -- Register replacements for the hammer. Entry ID is the ID of the node to -- replace and entry value is the ID of the node to replace with. local replacements = { - -- sefault stone crushing + -- obsidian -> stone -> cobble -> gravel -> sand ['default:obsidian'] = 'default:stone', ['default:stone'] = 'default:cobble', ['default:cobble'] = 'default:gravel', ['default:gravel'] = 'default:sand', -- sandstone types to sand ['default:sandstone'] = 'default:sand', - ['default:desert_sandstone'] = 'default:desert_cobble', - ['default:desert_cobble'] = 'default:desert_sand', + ['default:desert_sandstone'] = 'default:desert_sand', ['default:silver_sandstone'] = 'default:silver_sand', + -- desert stone -> desert cobble -> desert sand + ['default:desert_stone'] = 'default:desert_cobble', + ['default:desert_cobble'] = 'default:desert_sand', } + -- Get a node sound -- -- This helper function returns a sound table or nil depending on wheter the