This is an experimental copy for testing Poikilos' issue mirroring system. Note that Gitea's migration tool can import issues, but the "Issues" checkbox is disabled when "This repository will be a mirror" is enabled (it is for this repo).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
763 B

-- formerly getting cotton seeds only possible 1/8 chance harvesting default:junglegrass
minetest.register_craft({
output = "moreblocks:sweeper 4",
recipe = {
{"default:grass_1"},
{"default:stick"}
}
})
minetest.register_craft({
type = "shapeless",
output = "farming:seed_cotton",
recipe = {
"farming:cotton","farming:cotton","farming:cotton",
"farming:cotton","farming:cotton","farming:cotton",
"farming:cotton","farming:cotton",
}
})
-- formerly only possible using default:junglegrass
-- reedmace_height_2, reedmace_sapling, reedmace_height_3_spikes, etc all become reedmace_sapling when mined
minetest.register_craft({
output = "moreblocks:rope 3",
recipe = {
{"default:grass_1"},
{"default:grass_1"},
{"default:grass_1"}
}
})