summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rwxr-xr-xinit.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/init.lua b/init.lua
index 2e079eb..ebdf5fb 100755
--- a/init.lua
+++ b/init.lua
@@ -314,6 +314,24 @@ elseif core.get_modpath("mcl_core") and mcl_core then
})
end
+--
+-- Register drawer trim
+--
+
+core.register_node("drawers:trim", {
+ description = S("Wooden Trim"),
+ tiles = {"drawers_trim.png"},
+ groups = {drawer = 1, choppy = 3, oddly_breakable_by_hand = 2}
+})
+
+core.register_craft({
+ output = "drawers:trim 6",
+ recipe = {
+ {"group:stick", "group:wood", "group:stick"},
+ {"group:wood", "group:wood", "group:wood"},
+ {"group:stick", "group:wood", "group:stick"}
+ }
+})
--
-- Register drawer upgrade template