forked from VoxeLibre/VoxeLibre
Rename “seed” items to “seeds”
This commit is contained in:
parent
cd62f29bb2
commit
a67f13c02f
|
@ -886,7 +886,7 @@ minetest.register_node("mcl_core:junglegrass", {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{
|
{
|
||||||
items = {'mcl_farming:wheat_seed'},
|
items = {'mcl_farming:wheat_seeds'},
|
||||||
rarity = 8,
|
rarity = 8,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -1388,7 +1388,7 @@ minetest.register_node("mcl_core:grass", {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{
|
{
|
||||||
items = {'mcl_farming:wheat_seed'},
|
items = {'mcl_farming:wheat_seeds'},
|
||||||
rarity = 8,
|
rarity = 8,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -202,7 +202,7 @@ minetest.register_node("mcl_farming:melontige_linked_b", {
|
||||||
sounds = mcl_core.node_sound_leaves_defaults(),
|
sounds = mcl_core.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("mcl_farming:melon_seed", {
|
minetest.register_craftitem("mcl_farming:melon_seeds", {
|
||||||
description = "Melon Seeds",
|
description = "Melon Seeds",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = { craftitem=1 },
|
groups = { craftitem=1 },
|
||||||
|
@ -273,7 +273,7 @@ minetest.register_abm({
|
||||||
mcl_farming:add_plant("mcl_farming:melontige_unconnect", {"mcl_farming:melontige_1", "mcl_farming:melontige_2"}, 50, 20)
|
mcl_farming:add_plant("mcl_farming:melontige_unconnect", {"mcl_farming:melontige_1", "mcl_farming:melontige_2"}, 50, 20)
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_farming:melon_seed",
|
output = "mcl_farming:melon_seeds",
|
||||||
recipe = {{"mcl_farming:melon_item"}}
|
recipe = {{"mcl_farming:melon_item"}}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
minetest.register_craftitem("mcl_farming:pumpkin_seed", {
|
minetest.register_craftitem("mcl_farming:pumpkin_seeds", {
|
||||||
description = "Pumpkin Seeds",
|
description = "Pumpkin Seeds",
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
inventory_image = "farming_pumpkin_seed.png",
|
inventory_image = "farming_pumpkin_seed.png",
|
||||||
|
@ -284,7 +284,7 @@ minetest.register_craft({
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_farming:pumpkin_seed 4",
|
output = "mcl_farming:pumpkin_seeds 4",
|
||||||
recipe = {{"mcl_farming:pumpkin_face"}}
|
recipe = {{"mcl_farming:pumpkin_face"}}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
minetest.register_craftitem("mcl_farming:wheat_seed", {
|
minetest.register_craftitem("mcl_farming:wheat_seeds", {
|
||||||
description = "Wheat Seeds",
|
description = "Wheat Seeds",
|
||||||
groups = { craftitem=1 },
|
groups = { craftitem=1 },
|
||||||
inventory_image = "farming_wheat_seed.png",
|
inventory_image = "farming_wheat_seed.png",
|
||||||
|
@ -13,7 +13,7 @@ minetest.register_node("mcl_farming:wheat_1", {
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "mcl_farming:wheat_seed",
|
drop = "mcl_farming:wheat_seeds",
|
||||||
tiles = {"farming_wheat_1.png"},
|
tiles = {"farming_wheat_1.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -40,7 +40,7 @@ minetest.register_node("mcl_farming:wheat_2", {
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "mcl_farming:wheat_seed",
|
drop = "mcl_farming:wheat_seeds",
|
||||||
tiles = {"farming_wheat_2.png"},
|
tiles = {"farming_wheat_2.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -67,7 +67,7 @@ minetest.register_node("mcl_farming:wheat_3", {
|
||||||
walkable = false,
|
walkable = false,
|
||||||
drawtype = "nodebox",
|
drawtype = "nodebox",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
drop = "mcl_farming:wheat_seed",
|
drop = "mcl_farming:wheat_seeds",
|
||||||
tiles = {"farming_wheat_3.png"},
|
tiles = {"farming_wheat_3.png"},
|
||||||
selection_box = {
|
selection_box = {
|
||||||
type = "fixed",
|
type = "fixed",
|
||||||
|
@ -98,9 +98,9 @@ minetest.register_node("mcl_farming:wheat", {
|
||||||
drop = {
|
drop = {
|
||||||
max_items = 4,
|
max_items = 4,
|
||||||
items = {
|
items = {
|
||||||
{ items = {'mcl_farming:wheat_seed'} },
|
{ items = {'mcl_farming:wheat_seeds'} },
|
||||||
{ items = {'mcl_farming:wheat_seed'}, rarity = 2},
|
{ items = {'mcl_farming:wheat_seeds'}, rarity = 2},
|
||||||
{ items = {'mcl_farming:wheat_seed'}, rarity = 5},
|
{ items = {'mcl_farming:wheat_seeds'}, rarity = 5},
|
||||||
{ items = {'mcl_farming:wheat_harvested'} }
|
{ items = {'mcl_farming:wheat_harvested'} }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -208,7 +208,7 @@ minetest.register_node("mcl_flowers:fern", {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{
|
{
|
||||||
items = {'mcl_farming:wheat_seed'},
|
items = {'mcl_farming:wheat_seeds'},
|
||||||
rarity = 8,
|
rarity = 8,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue