Tweak doll size in monster spawner

This commit is contained in:
Wuzzy 2017-05-25 03:14:52 +02:00
parent 8c9e196a53
commit 62dad8daf1
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ local function set_doll_properties(doll, mob)
mesh = mobinfo.mesh, mesh = mobinfo.mesh,
textures = get_mob_textures(mob), textures = get_mob_textures(mob),
visual_size = { visual_size = {
x = mobinfo.visual_size.x * 0.5, x = mobinfo.visual_size.x * 0.33333,
y = mobinfo.visual_size.y * 0.5, y = mobinfo.visual_size.y * 0.33333,
} }
} }
doll:set_properties(prop) doll:set_properties(prop)