Reduced spawning requirements for the Valkyrie Queen.

This commit is contained in:
bconlon 2020-12-30 20:19:46 -08:00
parent 5cc931a20a
commit 2d8b84b9f6
1 changed files with 1 additions and 1 deletions

View File

@ -555,7 +555,7 @@ public class EntityValkyrieQueen extends EntityBossMob implements IAetherBoss {
int i = MathHelper.floor_double(this.posX);
int j = MathHelper.floor_double(this.boundingBox.minY);
int k = MathHelper.floor_double(this.posZ);
return this.worldObj.getBlockLightValue(i, j, k) > 8 && this.worldObj.checkBlockCollision(this.boundingBox) && this.worldObj.getCollidingBoundingBoxes(this, this.boundingBox).size() == 0 && !this.worldObj.isAnyLiquid(this.boundingBox);
return this.worldObj.checkBlockCollision(this.boundingBox) && this.worldObj.getCollidingBoundingBoxes(this, this.boundingBox).size() == 0;
}
public int getMedals(EntityPlayer entityplayer) {