Skip to content

Commit 1f6d633

Browse files
committedMar 7, 2017
Ladder recipe: Make wooden ladder recipe more generous
Increase to 5 ladders from 7 sticks. More generous to help with vertical travel. Divide the log core volume of 14 * 14 * 16 cubic pixels by the volume of a ladder node with two 2 * 2 * 16 side pieces and four 2 * 1 * 16 rungs (cut down to length 14), to get 12.25 ladders per log. The recipe of 7 stick items is 7 / 16 = 0.4375 logs. Ladders per 7 stick items = 0.4375 * 12.25 = 5.36.
1 parent a16413f commit 1f6d633

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎mods/default/crafting.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -646,11 +646,11 @@ minetest.register_craft({
646646
})
647647

648648
minetest.register_craft({
649-
output = 'default:ladder_wood 3',
649+
output = "default:ladder_wood 5",
650650
recipe = {
651-
{'group:stick', '', 'group:stick'},
652-
{'group:stick', 'group:stick', 'group:stick'},
653-
{'group:stick', '', 'group:stick'},
651+
{"group:stick", "", "group:stick"},
652+
{"group:stick", "group:stick", "group:stick"},
653+
{"group:stick", "", "group:stick"},
654654
}
655655
})
656656

0 commit comments

Comments
 (0)
Please sign in to comment.