make it check not child, since the return statement was removed

This commit is contained in:
SumianVoice 2022-07-18 23:41:27 +10:00 committed by cora
parent a07a5b24bd
commit e5c1da4380
1 changed files with 2 additions and 2 deletions

View File

@ -4394,7 +4394,7 @@ function mcl_mobs:feed_tame(self, clicker, feed_count, breed, tame, notake)
-- feed and tame
self.food = (self.food or 0) + 1
if self.food >= feed_count then
if not self.child and self.food >= feed_count then
self.food = 0
@ -4416,7 +4416,7 @@ function mcl_mobs:feed_tame(self, clicker, feed_count, breed, tame, notake)
-- make sound when fed so many times
mob_sound(self, "random", true)
end
-- if not in creative then take item
-- if not in creative then take item if it was used
if not minetest.is_creative_enabled(clicker:get_player_name()) and consume_food then
local item = clicker:get_wielded_item()