Don't allow to collect cow/chicken/pick

They were able to be collectable with rightclick with the hand when they were tamed
This commit is contained in:
Wuzzy 2017-02-21 23:17:26 +01:00
parent 27ee14b291
commit 5ca9f141c6
3 changed files with 0 additions and 5 deletions

View File

@ -95,8 +95,6 @@ mobs:register_mob("mobs_mc:chicken", {
if mobs:feed_tame(self, clicker, 8, true, true) then
return
end
mobs:capture_mob(self, clicker, 30, 50, 80, false, nil)
end,
do_custom = function(self)

View File

@ -120,8 +120,6 @@ mobs:register_mob("mobs_mc:cow", {
return
end
mobs:capture_mob(self, clicker, 0, 5, 60, false, nil)
end,
})

View File

@ -129,7 +129,6 @@ mobs:register_mob("mobs_mc:pig", {
if mobs:feed_tame(self, clicker, 8, true, true) then
return
end
mobs:capture_mob(self, clicker, 0, 5, 50, false, nil)
end,
})