Skip to content

Commit

Permalink
fix breath projectiles becoming Mega w/ bad server connection
Browse files Browse the repository at this point in the history
  • Loading branch information
afamiliarquiet committed Jul 6, 2024
1 parent 76bb499 commit 8fcba51
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ public void tick() {
this.getWorld().playSound(null, p.x, p.y, p.z,
SoundEvents.ITEM_FIRECHARGE_USE, SoundCategory.PLAYERS,
0.5f, (this.getRandom().nextFloat() * 0.1f + 0.4f));
} else {
if (this.age > MAX_AGE) {
this.discard();
}
}

if (this.age > MAX_AGE) {
this.discard();
}
}

Expand Down

0 comments on commit 8fcba51

Please sign in to comment.