Make tall grass drop wheat,melon,and pumpkin seeds
This commit is contained in:
parent
57a98d3d8e
commit
5024742050
@ -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
|
||||
|
@ -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"},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user