mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-22 16:10:18 +01:00
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({
|
||||
type = "shapeless",
|
||||
output = 'homedecor:plastic_base 4',
|
||||
output = 'homedecor:plastic_base 6',
|
||||
recipe = { "default:junglegrass",
|
||||
"default:junglegrass",
|
||||
"default:junglegrass"
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = 'homedecor:plastic_base 2',
|
||||
output = 'homedecor:plastic_base 3',
|
||||
recipe = { "default:dry_shrub",
|
||||
"default:dry_shrub",
|
||||
"default:dry_shrub"
|
||||
},
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user