From 535e611eb1f40e0b7010870a06f66fb99cd0d239 Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Mon, 11 Jan 2016 12:39:24 -0800 Subject: [PATCH] Fix trapdoor recipe conflict with iron bar recipe. In oversight, I added this recipe not verifying that it was already taken. We change this to a 2x2 iron bar recipe. The shape and amount are reasonable (reduced to output 1 steel trapdoor), and I verified that it wasn't in use. Fixes #779 --- 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 c3896d95..92b42669 100644 --- a/mods/doors/init.lua +++ b/mods/doors/init.lua @@ -539,11 +539,10 @@ minetest.register_craft({ }) minetest.register_craft({ - output = 'doors:trapdoor_steel 2', + output = 'doors:trapdoor_steel', recipe = { - {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, - {'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}, - {'', '', ''}, + {'default:steel_ingot', 'default:steel_ingot'}, + {'default:steel_ingot', 'default:steel_ingot'}, } }) -- 2.25.1