mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-03-21 15:21:21 +00:00
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
This commit is contained in:
parent
223e924edf
commit
535e611eb1
1 changed files with 3 additions and 4 deletions
|
@ -539,11 +539,10 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'doors:trapdoor_steel 2',
|
output = 'doors:trapdoor_steel',
|
||||||
recipe = {
|
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'},
|
||||||
{'', '', ''},
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue