diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2017-04-27 14:00:57 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-04-27 14:00:57 +0100 |
commit | 8deab4025606e2469dc6d28b141abfe586531d70 (patch) | |
tree | 8fe7cf6e120124e36f2afc86466f2fb75adbeb2c /cow.lua | |
parent | 7eb3bcb7f9d1bb83c0f76ef2728af07d25add52c (diff) |
protect/capture returns added
Diffstat (limited to 'cow.lua')
-rw-r--r-- | cow.lua | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -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, }) |