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.
 
 
 
 
 
 

41 lines
985 B

minetest.override_item("dryplants:reedmace_sapling", {
drop = {
max_items = 1,
items = {
{items = {'farming:seed_cotton'}, rarity = 8},
{items = {'dryplants:reedmace_sapling'}},
}
},
})
-- formerly only possible using default:junglegrass
minetest.register_craft({
output = "moreblocks:sweeper 4",
recipe = {
{"dryplants:reedmace_sapling"},
{"default:stick"},
}
})
-- 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 = {
{"dryplants:reedmace_sapling"},
{"dryplants:reedmace_sapling"},
{"dryplants:reedmace_sapling"},
}
})
-- formerly only possible using group:vines
-- if minetest.get_modpath("vines") ~= nil then
minetest.register_craft({
output = 'vines:rope_block',
recipe = {
{'', 'default:wood', ''},
{'', 'farming:string', ''},
{'', 'farming:string', ''}
}
})
-- end