From 9a9804a5d9376b6b2458c0c147e201ba04c9ac0f Mon Sep 17 00:00:00 2001 From: GnawOmiz Date: Tue, 24 Jun 2025 14:26:46 -0700 Subject: [PATCH] Update egg-hatch-phase.ts --- src/phases/egg-hatch-phase.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/phases/egg-hatch-phase.ts b/src/phases/egg-hatch-phase.ts index d6c40a1510e..8ce006a4719 100644 --- a/src/phases/egg-hatch-phase.ts +++ b/src/phases/egg-hatch-phase.ts @@ -177,7 +177,9 @@ export class EggHatchPhase extends Phase { globalScene.time.delayedCall(1000, () => { if (!this.hatched) { - this.evolutionBgm = globalScene.playSoundWithoutBgm("evolution"); + if (globalScene.audioSettings.masterVolume > 0) { + this.evolutionBgm = globalScene.playSoundWithoutBgm("evolution"); + } } });