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"); + } } });