From 4bc0e265636c8759f431ccfe31bebadcadeb6f76 Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Mon, 11 Jan 2016 21:06:03 -0800 Subject: [PATCH] New trapdoor recipe. Related: #779 Trapdoors are square, not rectangular. The rectangular recipes are already used for glass panes, walls, doors, but no square recipes existed until #779 got fixed. This course of events suggests that it was a mistake to pick the original trapdoor recipe. Instead, we propose to use a similar 2x2 recipe for the trapdoor, which is square. The recipe can be made in any of the 4 corners of the crafting grid. --- mods/doors/init.lua | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mods/doors/init.lua b/mods/doors/init.lua index 92b42669..6f612434 100644 --- a/mods/doors/init.lua +++ b/mods/doors/init.lua @@ -530,11 +530,10 @@ doors.register_trapdoor("doors:trapdoor_steel", { }) minetest.register_craft({ - output = 'doors:trapdoor 2', + output = 'doors:trapdoor', recipe = { - {'group:wood', 'group:wood', 'group:wood'}, - {'group:wood', 'group:wood', 'group:wood'}, - {'', '', ''}, + {'group:wood', 'group:wood'}, + {'group:wood', 'group:wood'}, } })