protect/capture returns added

This commit is contained in:
TenPlus1
2017-04-27 14:00:57 +01:00
parent 7eb3bcb7f9
commit 8deab40256
7 changed files with 20 additions and 38 deletions

View File

@ -59,9 +59,9 @@ mobs:register_mob("mobs_animal:cow", {
on_rightclick = function(self, clicker)
-- feed or tame
if mobs:feed_tame(self, clicker, 8, true, true) then
return
end
if mobs:feed_tame(self, clicker, 8, true, true) then return end
if mobs:protect(self, clicker) then return end
if mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) then return end
local tool = clicker:get_wielded_item()
local name = clicker:get_player_name()
@ -96,9 +96,6 @@ mobs:register_mob("mobs_animal:cow", {
return
end
mobs:protect(self, clicker)
mobs:capture_mob(self, clicker, 0, 5, 60, false, nil)
end,
})