forked from VoxeLibre/VoxeLibre
Rename mcl_farming:wheat_harvested to mcl_farming:wheat_item
This commit is contained in:
parent
acb3127899
commit
3cbb39b1fb
|
@ -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"},
|
||||
|
|
|
@ -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'},
|
||||
}
|
||||
|
|
|
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
@ -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",},
|
||||
|
|
Loading…
Reference in New Issue