mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-04 21:10:04 -04:00
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.
This commit is contained in:
parent
535e611eb1
commit
4bc0e26563
1 changed files with 3 additions and 4 deletions
|
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue