Skip to content

Commit

Permalink
Fix trapdoor recipe conflict with iron bar recipe.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sofar authored and paramat committed Jan 12, 2016
1 parent 223e924 commit 535e611
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions mods/doors/init.lua
Expand Up @@ -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'},
}
})

0 comments on commit 535e611

Please sign in to comment.