From 8deab4025606e2469dc6d28b141abfe586531d70 Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Thu, 27 Apr 2017 14:00:57 +0100 Subject: protect/capture returns added --- bunny.lua | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'bunny.lua') diff --git a/bunny.lua b/bunny.lua index 1c882cd..66867ea 100644 --- a/bunny.lua +++ b/bunny.lua @@ -50,9 +50,9 @@ mobs:register_mob("mobs_animal:bunny", { on_rightclick = function(self, clicker) -- feed or tame - if mobs:feed_tame(self, clicker, 4, true, true) then - return - end + if mobs:feed_tame(self, clicker, 4, true, true) then return end + if mobs:protect(self, clicker) then return end + if mobs:capture_mob(self, clicker, 30, 50, 80, false, nil) then return end -- Monty Python tribute local item = clicker:get_wielded_item() @@ -73,9 +73,6 @@ mobs:register_mob("mobs_animal:bunny", { return end - - mobs:protect(self, clicker) - mobs:capture_mob(self, clicker, 30, 50, 80, false, nil) end, attack_type = "dogfight", -- cgit v1.2.3