Made lightning attack more frequent.
This commit is contained in:
parent
d3618e45a3
commit
1a07c4ec9a
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ public class EntityValkyrieQueen extends EntityBossMob implements IAetherBoss {
|
|||
}
|
||||
|
||||
if (this.timeUntilTeleport++ >= 450) {
|
||||
if (this.onGround && this.rand.nextInt(10) == 0) {
|
||||
if (this.onGround && this.rand.nextInt(5) == 0) {
|
||||
this.makeHomeShot(1, (EntityPlayer) this.getEntityToAttack());
|
||||
} else {
|
||||
this.teleport(this.getEntityToAttack().posX, this.getEntityToAttack().posY, this.getEntityToAttack().posZ, 4);
|
||||
|
|
Loading…
Reference in a new issue