Fix chicken, cow and sheep not dropping food

This commit is contained in:
Wuzzy 2017-02-23 02:21:27 +01:00
parent 23edc81f9d
commit 293fb66073
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ mobs:register_mob("mobs_mc:chicken", {
walk_velocity = 1,
armor = 100,
drops = {
{name = "mcl_mobitems:chicken_raw",
{name = "mcl_mobitems:chicken",
chance = 1,
min = 1,
max = 1,},

View File

@ -21,7 +21,7 @@ mobs:register_mob("mobs_mc:cow", {
walk_velocity = 1,
armor = 100,
drops = {
{name = "mcl_mobitems:beef_raw",
{name = "mcl_mobitems:beef",
chance = 1,
min = 1,
max = 3,},

View File

@ -22,7 +22,7 @@ mobs:register_mob("mobs_mc:sheep", {
walk_velocity = 1,
armor = 100,
drops = {
{name = "mcl_mobs:mutton_raw",
{name = "mcl_mobs:mutton",
chance = 1,
min = 1,
max = 2,},
@ -112,7 +112,7 @@ print(item:get_name(), minetest.get_item_group(item:get_name(), "dye"))
})
self.color = pname
self.drops = {
{name = "mcl_mobs:mutton_raw",
{name = "mcl_mobs:mutton",
chance = 1,
min = 1,
max = 2,},