Skip to content

Commit

Permalink
Increase call cooldown
Browse files Browse the repository at this point in the history
  • Loading branch information
MrXBlade committed Nov 10, 2024
1 parent 842f3b5 commit dc8e5f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public void attemptMoaSound()
if (this.random.nextFloat() < 0.2f + this.soundChance) {
if (this.random.nextFloat() > 0.05f + this.songChance || isBaby()) {
//Small chirp
this.moaSoundCallCooldown = 60 + random.nextInt(55);
this.moaSoundCallCooldown = 160 + this.random.nextInt(155);
this.songChance += MathHelper.clamp(this.random.nextFloat(), 0.1f, 0.04f);

if (!isBaby()) {
Expand Down

0 comments on commit dc8e5f8

Please sign in to comment.