Skip to content

Commit 535e611

Browse files
sofarparamat
authored andcommittedJan 12, 2016
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
1 parent 223e924 commit 535e611

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

Diff for: ‎mods/doors/init.lua

+3-4
Original file line numberDiff line numberDiff line change
@@ -539,11 +539,10 @@ minetest.register_craft({
539539
})
540540

541541
minetest.register_craft({
542-
output = 'doors:trapdoor_steel 2',
542+
output = 'doors:trapdoor_steel',
543543
recipe = {
544-
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
545-
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
546-
{'', '', ''},
544+
{'default:steel_ingot', 'default:steel_ingot'},
545+
{'default:steel_ingot', 'default:steel_ingot'},
547546
}
548547
})
549548

0 commit comments

Comments
 (0)