Make tall grass drop wheat,melon,and pumpkin seeds

This commit is contained in:
oilboi 2020-05-08 04:12:51 -04:00
parent 57a98d3d8e
commit 5024742050
2 changed files with 9 additions and 5 deletions

View File

@ -246,7 +246,7 @@
if def.seed_name then
minetest.register_craftitem("farming:"..def.seed_name.."_seeds", {
description = def.seed_description.." Seeds",
description = def.seed_description,
inventory_image = def.seed_inventory_image,
on_place = function(itemstack, placer, pointed_thing)
if pointed_thing.type ~= "node" then

View File

@ -98,10 +98,14 @@ minetest.register_plant("grass", {
rarity = 10,
items = {"farming:melon_seeds"},
},
--{
-- rarity = 10,
-- items = {"farming:pumpkin_seeds"},
--},
{
rarity = 10,
items = {"farming:pumpkin_seeds"},
},
{
rarity = 10,
items = {"farming:wheat_seeds"},
},
},
},
})