change entity kill height
This commit is contained in:
parent
7fd8a49d5c
commit
c62e3386aa
2 changed files with 2 additions and 2 deletions
|
@ -346,7 +346,7 @@ public abstract class Entity
|
||||||
this.setOnFireFromMolten();
|
this.setOnFireFromMolten();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.posY < -64.0D)
|
if (this.posY < (double)(-World.MAX_SIZE_Y))
|
||||||
{
|
{
|
||||||
this.onVoidUpdate();
|
this.onVoidUpdate();
|
||||||
}
|
}
|
||||||
|
|
|
@ -242,7 +242,7 @@ public abstract class EntityCart extends Entity implements IWorldNameable
|
||||||
this.setDamage(this.getDamage() - 1);
|
this.setDamage(this.getDamage() - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.posY < -64.0D)
|
if (this.posY < (double)(-World.MAX_SIZE_Y))
|
||||||
{
|
{
|
||||||
this.onVoidUpdate();
|
this.onVoidUpdate();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue