Fixed wasp size

This commit is contained in:
Matt Caughey 2013-10-30 02:16:50 -04:00
parent 1e03fc2ea5
commit 9a0a75eb23
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ public class BlockHive extends Block
if (world.getBlockMetadata(x, y, z) == 2)
{
EntityWasp wasp = new EntityWasp(world);
wasp.setLocationAndAngles((double)x + 0.6, (double)y + 0.1, (double)z + 0.3, 0.0F, 0.0F);
wasp.setLocationAndAngles((double)x + 0.6, (double)y, (double)z + 0.3, 0.0F, 0.0F);
world.spawnEntityInWorld(wasp);
}
}

View File

@ -23,7 +23,7 @@ public class EntityWasp extends EntityFlyingMob
public EntityWasp(World world)
{
super(world);
this.setSize(1.0F, 1.0F);
this.setSize(0.5F, 0.5F);
}
@Override