From: Auke Kok Date: Mon, 11 Jan 2016 20:39:24 +0000 (-0800) Subject: Fix trapdoor recipe conflict with iron bar recipe. X-Git-Tag: 0.4.14~160 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=535e611eb1f40e0b7010870a06f66fb99cd0d239;p=oweals%2Fminetest_game.git 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 --- 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'}, } })