Rename “seed” items to “seeds”

This commit is contained in:
Wuzzy 2017-02-10 17:00:29 +01:00
parent cd62f29bb2
commit a67f13c02f
5 changed files with 14 additions and 14 deletions

View File

@ -886,7 +886,7 @@ minetest.register_node("mcl_core:junglegrass", {
max_items = 1,
items = {
{
items = {'mcl_farming:wheat_seed'},
items = {'mcl_farming:wheat_seeds'},
rarity = 8,
},
}
@ -1388,7 +1388,7 @@ minetest.register_node("mcl_core:grass", {
max_items = 1,
items = {
{
items = {'mcl_farming:wheat_seed'},
items = {'mcl_farming:wheat_seeds'},
rarity = 8,
},
}

View File

@ -202,7 +202,7 @@ minetest.register_node("mcl_farming:melontige_linked_b", {
sounds = mcl_core.node_sound_leaves_defaults(),
})
minetest.register_craftitem("mcl_farming:melon_seed", {
minetest.register_craftitem("mcl_farming:melon_seeds", {
description = "Melon Seeds",
stack_max = 64,
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)
minetest.register_craft({
output = "mcl_farming:melon_seed",
output = "mcl_farming:melon_seeds",
recipe = {{"mcl_farming:melon_item"}}
})

View File

@ -1,4 +1,4 @@
minetest.register_craftitem("mcl_farming:pumpkin_seed", {
minetest.register_craftitem("mcl_farming:pumpkin_seeds", {
description = "Pumpkin Seeds",
stack_max = 64,
inventory_image = "farming_pumpkin_seed.png",
@ -284,7 +284,7 @@ minetest.register_craft({
})
minetest.register_craft({
output = "mcl_farming:pumpkin_seed 4",
output = "mcl_farming:pumpkin_seeds 4",
recipe = {{"mcl_farming:pumpkin_face"}}
})

View File

@ -1,4 +1,4 @@
minetest.register_craftitem("mcl_farming:wheat_seed", {
minetest.register_craftitem("mcl_farming:wheat_seeds", {
description = "Wheat Seeds",
groups = { craftitem=1 },
inventory_image = "farming_wheat_seed.png",
@ -13,7 +13,7 @@ minetest.register_node("mcl_farming:wheat_1", {
walkable = false,
drawtype = "nodebox",
paramtype = "light",
drop = "mcl_farming:wheat_seed",
drop = "mcl_farming:wheat_seeds",
tiles = {"farming_wheat_1.png"},
selection_box = {
type = "fixed",
@ -40,7 +40,7 @@ minetest.register_node("mcl_farming:wheat_2", {
walkable = false,
drawtype = "nodebox",
paramtype = "light",
drop = "mcl_farming:wheat_seed",
drop = "mcl_farming:wheat_seeds",
tiles = {"farming_wheat_2.png"},
selection_box = {
type = "fixed",
@ -67,7 +67,7 @@ minetest.register_node("mcl_farming:wheat_3", {
walkable = false,
drawtype = "nodebox",
paramtype = "light",
drop = "mcl_farming:wheat_seed",
drop = "mcl_farming:wheat_seeds",
tiles = {"farming_wheat_3.png"},
selection_box = {
type = "fixed",
@ -98,9 +98,9 @@ minetest.register_node("mcl_farming:wheat", {
drop = {
max_items = 4,
items = {
{ items = {'mcl_farming:wheat_seed'} },
{ items = {'mcl_farming:wheat_seed'}, rarity = 2},
{ items = {'mcl_farming:wheat_seed'}, rarity = 5},
{ items = {'mcl_farming:wheat_seeds'} },
{ items = {'mcl_farming:wheat_seeds'}, rarity = 2},
{ items = {'mcl_farming:wheat_seeds'}, rarity = 5},
{ items = {'mcl_farming:wheat_harvested'} }
}
},

View File

@ -208,7 +208,7 @@ minetest.register_node("mcl_flowers:fern", {
max_items = 1,
items = {
{
items = {'mcl_farming:wheat_seed'},
items = {'mcl_farming:wheat_seeds'},
rarity = 8,
},
}