From e62b91a70aec1c6d13475aa331da780b35b82271 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 23 Feb 2017 14:13:50 +0100 Subject: [PATCH] Fix sheep drops for real this time --- mods/ENTITIES/mobs_mc/sheep.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ENTITIES/mobs_mc/sheep.lua b/mods/ENTITIES/mobs_mc/sheep.lua index f2926e750..5bb676831 100644 --- a/mods/ENTITIES/mobs_mc/sheep.lua +++ b/mods/ENTITIES/mobs_mc/sheep.lua @@ -22,7 +22,7 @@ mobs:register_mob("mobs_mc:sheep", { walk_velocity = 1, armor = 100, drops = { - {name = "mcl_mobs:mutton", + {name = "mcl_mobitems: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", + {name = "mcl_mobitems:mutton", chance = 1, min = 1, max = 2,},