summaryrefslogtreecommitdiff
path: root/sheep.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-04-27 14:00:57 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2017-04-27 14:00:57 +0100
commit8deab4025606e2469dc6d28b141abfe586531d70 (patch)
tree8fe7cf6e120124e36f2afc86466f2fb75adbeb2c /sheep.lua
parent7eb3bcb7f9d1bb83c0f76ef2728af07d25add52c (diff)
protect/capture returns added
Diffstat (limited to 'sheep.lua')
-rw-r--r--sheep.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/sheep.lua b/sheep.lua
index 8637ef7..4cd6506 100644
--- a/sheep.lua
+++ b/sheep.lua
@@ -168,10 +168,10 @@ for _, col in ipairs(all_colours) do
end
-- protect mod with mobs:protector item
- mobs:protect(self, clicker)
+ if mobs:protect(self, clicker) then return end
--are we capturing?
- mobs:capture_mob(self, clicker, 0, 5, 60, false, nil)
+ if mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) then return end
end
})