Rename seed textures
This commit is contained in:
parent
7437d3945b
commit
f63342ec72
7 changed files with 6 additions and 6 deletions
|
@ -5,7 +5,7 @@ minetest.register_craftitem("mcl_farming:melon_seeds", {
|
|||
_doc_items_usagehelp = "Place the melon seeds on farmland (which can be created with a hoe) to plant a melon stem. Melons grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it melon seeds.",
|
||||
stack_max = 64,
|
||||
groups = { craftitem=1 },
|
||||
inventory_image = "farming_melon_seed.png",
|
||||
inventory_image = "mcl_farming_melon_seeds.png",
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:melontige_1")
|
||||
end,
|
||||
|
|
|
@ -4,7 +4,7 @@ minetest.register_craftitem("mcl_farming:pumpkin_seeds", {
|
|||
_doc_items_longdesc = "Grows into a pumpkin. Chickens like pumpkin seeds.",
|
||||
_doc_items_usagehelp = "Place the pumpkin seeds on farmland (which can be created with a hoe) to plant a pumpkin stem. Pumpkins grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it pumpkin seeds.",
|
||||
stack_max = 64,
|
||||
inventory_image = "farming_pumpkin_seed.png",
|
||||
inventory_image = "mcl_farming_pumpkin_seeds.png",
|
||||
groups = { craftitem=1 },
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:pumpkin_1")
|
||||
|
|
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
|
@ -4,7 +4,7 @@ minetest.register_craftitem("mcl_farming:wheat_seeds", {
|
|||
_doc_items_longdesc = "Grows into a wheat plant. Chickens like wheat seeds.",
|
||||
_doc_items_usagehelp = "Place the wheat seeds on farmland (which can be created with a hoe) to plant a wheat plant. They grow in sunlight and grow faster on hydrated farmland. Rightclick an animal to feed it wheat seeds.",
|
||||
groups = { craftitem=1 },
|
||||
inventory_image = "farming_wheat_seed.png",
|
||||
inventory_image = "mcl_farming_wheat_seeds.png",
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
return mcl_farming:place_seed(itemstack, placer, pointed_thing, "mcl_farming:wheat_1")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue