forked from nalc/homedecor_modpack
changed junglegrass-based plastic recipe to use 3 grass and yield 6 plastic.
Resolves a conflict with throwing mod. Dry shrubs changed also (3 yields 3 plastic) for consistency.
This commit is contained in:
parent
2900014d0f
commit
e81d9714b2
@ -123,16 +123,18 @@ minetest.register_craftitem("homedecor:plastic_base", {
|
|||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'homedecor:plastic_base 4',
|
output = 'homedecor:plastic_base 6',
|
||||||
recipe = { "default:junglegrass",
|
recipe = { "default:junglegrass",
|
||||||
|
"default:junglegrass",
|
||||||
"default:junglegrass"
|
"default:junglegrass"
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
type = "shapeless",
|
type = "shapeless",
|
||||||
output = 'homedecor:plastic_base 2',
|
output = 'homedecor:plastic_base 3',
|
||||||
recipe = { "default:dry_shrub",
|
recipe = { "default:dry_shrub",
|
||||||
|
"default:dry_shrub",
|
||||||
"default:dry_shrub"
|
"default:dry_shrub"
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user