Rename mcl_farming:wheat_harvested to mcl_farming:wheat_item

This commit is contained in:
Wuzzy 2017-02-11 21:38:25 +01:00
parent acb3127899
commit 3cbb39b1fb
4 changed files with 10 additions and 10 deletions

View File

@ -16,7 +16,7 @@ minetest.register_craft({
recipe = {
{'mcl_mobitems:milk_bucket', 'mcl_mobitems:milk_bucket', 'mcl_mobitems:milk_bucket'},
{'mcl_core:sugar', 'mcl_throwing:egg', 'mcl_core:sugar'},
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
{'mcl_farming:wheat_item', 'mcl_farming:wheat_item', 'mcl_farming:wheat_item'},
},
replacements = {
{"mcl_mobitems:milk_bucket", "bucket:bucket_empty"},

View File

@ -420,14 +420,14 @@ minetest.register_craft({
minetest.register_craft({
output = 'mcl_core:haybale',
recipe = {
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
{'mcl_farming:wheat_item', 'mcl_farming:wheat_item', 'mcl_farming:wheat_item'},
{'mcl_farming:wheat_item', 'mcl_farming:wheat_item', 'mcl_farming:wheat_item'},
{'mcl_farming:wheat_item', 'mcl_farming:wheat_item', 'mcl_farming:wheat_item'},
}
})
minetest.register_craft({
output = 'mcl_farming:wheat_harvested 9',
output = 'mcl_farming:wheat_item 9',
recipe = {
{'mcl_core:haybale'},
}

View File

@ -101,7 +101,7 @@ minetest.register_node("mcl_farming:wheat", {
{ items = {'mcl_farming:wheat_seeds'} },
{ items = {'mcl_farming:wheat_seeds'}, rarity = 2},
{ items = {'mcl_farming:wheat_seeds'}, rarity = 5},
{ items = {'mcl_farming:wheat_harvested'} }
{ items = {'mcl_farming:wheat_item'} }
}
},
selection_box = {
@ -125,7 +125,7 @@ minetest.register_node("mcl_farming:wheat", {
mcl_farming:add_plant("mcl_farming:wheat", {"mcl_farming:wheat_1", "mcl_farming:wheat_2", "mcl_farming:wheat_3"}, 50, 20)
minetest.register_craftitem("mcl_farming:wheat_harvested", {
minetest.register_craftitem("mcl_farming:wheat_item", {
description = "Wheat",
inventory_image = "farming_wheat_harvested.png",
groups = { craftitem = 1 },
@ -134,14 +134,14 @@ minetest.register_craftitem("mcl_farming:wheat_harvested", {
minetest.register_craft({
output = "mcl_farming:bread",
recipe = {
{'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested', 'mcl_farming:wheat_harvested'},
{'mcl_farming:wheat_item', 'mcl_farming:wheat_item', 'mcl_farming:wheat_item'},
}
})
minetest.register_craft({
output = "mcl_farming:cookie 8",
recipe = {
{'mcl_farming:wheat_harvested', 'mcl_dye:brown', 'mcl_farming:wheat_harvested'},
{'mcl_farming:wheat_item', 'mcl_dye:brown', 'mcl_farming:wheat_item'},
}
})

View File

@ -75,7 +75,7 @@ mobs:register_mob("mobs_mc:cow", {
end,
]]
--from mobs_animals
follow = "mcl_farming:wheat_harvested",
follow = "mcl_farming:wheat_item",
view_range = 7,
replace_rate = 10,
replace_what = {"mcl_core:tallgrass",},