Skip to content
Snippets Groups Projects
Commit 08924ee1 authored by TenPlus1's avatar TenPlus1
Browse files

Rats and Bee's when caught return standard craftitem, not special egg

parent 6be32681
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ mobs:register_mob("mobs_animal:bee", {
walk_end = 65,
},
on_rightclick = function(self, clicker)
mobs:capture_mob(self, clicker, 25, 80, 0, true, nil)
mobs:capture_mob(self, clicker, 50, 90, 0, true, "mobs_animal:bee")
end,
})
......
......@@ -29,7 +29,7 @@ mobs:register_mob("mobs_animal:rat", {
light_damage = 0,
fear_height = 2,
on_rightclick = function(self, clicker)
mobs:capture_mob(self, clicker, 25, 80, 0, true, nil)
mobs:capture_mob(self, clicker, 50, 90, 0, true, "mobs_animal:rat")
end,
--[[
do_custom = function(self, dtime)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment