diff --git a/mods/mcl_core/nodes.lua b/mods/mcl_core/nodes.lua index e6f2058cf..f8899dee5 100644 --- a/mods/mcl_core/nodes.lua +++ b/mods/mcl_core/nodes.lua @@ -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, }, } diff --git a/mods/mcl_farming/melon.lua b/mods/mcl_farming/melon.lua index 2500ebf66..e2a71cca0 100644 --- a/mods/mcl_farming/melon.lua +++ b/mods/mcl_farming/melon.lua @@ -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"}} }) diff --git a/mods/mcl_farming/pumpkin.lua b/mods/mcl_farming/pumpkin.lua index a80755f52..bff9b51ab 100644 --- a/mods/mcl_farming/pumpkin.lua +++ b/mods/mcl_farming/pumpkin.lua @@ -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"}} }) diff --git a/mods/mcl_farming/wheat.lua b/mods/mcl_farming/wheat.lua index 218137b7e..152d7ffb6 100644 --- a/mods/mcl_farming/wheat.lua +++ b/mods/mcl_farming/wheat.lua @@ -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'} } } }, diff --git a/mods/mcl_flowers/init.lua b/mods/mcl_flowers/init.lua index b131a052e..4d41e7eaa 100644 --- a/mods/mcl_flowers/init.lua +++ b/mods/mcl_flowers/init.lua @@ -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, }, }