mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
if moreblocks is installed, use different recipe
for sticks -> bundle of sticks also add recipe to craft bundle --> 4 sticks
This commit is contained in:
parent
7ac5e9e815
commit
abdd52721c
@ -93,12 +93,29 @@ minetest.register_craft({
|
|||||||
{"default:wood", "default:junglewood"},
|
{"default:wood", "default:junglewood"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
if minetest.get_modpath("moreblocks") then
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'building_blocks:sticks 2',
|
||||||
|
recipe = {
|
||||||
|
{'group:stick', '' , 'group:stick'},
|
||||||
|
{'group:stick', 'group:stick', 'group:stick'},
|
||||||
|
{'group:stick', 'group:stick', 'group:stick'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
else
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'building_blocks:sticks',
|
||||||
|
recipe = {
|
||||||
|
{'group:stick', 'group:stick'},
|
||||||
|
{'group:stick', 'group:stick'},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'building_blocks:sticks',
|
output = 'default:stick 4',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'group:stick', 'group:stick'},
|
{'building_blocks:sticks'},
|
||||||
{'group:stick', 'group:stick'},
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user