Increased death range

This commit is contained in:
Kino 2016-12-24 11:30:22 -05:00
parent 30b9906c3d
commit 48390f2fc9
2 changed files with 2 additions and 2 deletions

View file

@ -71,7 +71,7 @@ public class EntityZephyr extends EntityFlying implements IMob
this.shootingAI.updateTask();
}
if(this.posY < -2D || this.posY > 130D)
if(this.posY < -2D || this.posY > 255D)
{
this.despawnEntity();
}

View file

@ -68,7 +68,7 @@ public class EntityAerwhale extends EntityFlying implements IMob
{
super.onUpdate();
if (this.worldObj.getClosestPlayer(this.posX, this.posY, this.posZ, 200, false) == null)
if (this.worldObj.getClosestPlayer(this.posX, this.posY, this.posZ, 255, false) == null)
{
this.setDead();
return;