From 883f206b77431bf1e3b9d4dcbf94fc1204a4e2a4 Mon Sep 17 00:00:00 2001 From: kts of kettek Date: Sun, 30 Jan 2022 03:23:57 -0800 Subject: [PATCH] Make yelling quieter --- Engine/src/live/AnimalEntity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/src/live/AnimalEntity.ts b/Engine/src/live/AnimalEntity.ts index 4b9be2a..eb60eb7 100644 --- a/Engine/src/live/AnimalEntity.ts +++ b/Engine/src/live/AnimalEntity.ts @@ -204,7 +204,7 @@ export class AnimalEntity extends Entity { this.desiredActions = adjustAction([], this.getCardinal(Math.random()*360), 1) } if (Math.random() > 1 - this.mode.noisiness) { - this.yell(0.25) + this.yell(0.1) } this.wanderTimer = 0 }