summaryrefslogtreecommitdiff
path: root/bunny.lua
diff options
context:
space:
mode:
Diffstat (limited to 'bunny.lua')
-rw-r--r--bunny.lua9
1 files changed, 3 insertions, 6 deletions
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",