make cave spider tiny

This commit is contained in:
tenplus1 2021-03-01 19:47:47 +00:00
parent 22308b4c94
commit 57f40cf4b1
1 changed files with 9 additions and 1 deletions

View File

@ -30,7 +30,8 @@ local spider_types = {
{ nodes = {"default:stone", "default:gravel"},
skins = {"mobs_spider_grey.png"},
docile = nil,
drops = nil
drops = nil,
small = true
},
{ nodes = {"default:mese", "default:stone_with_mese"},
@ -134,6 +135,13 @@ mobs:register_mob("mobs_monster:spider", {
self.shoot_offset = 2
end
if tmp.small then
self.object:set_properties({
collisionbox = {-0.2, -0.2, -0.2, 0.2, 0, 0.2},
visual_size = {x = 0.25, y = 0.25}
})
end
return true
end
end