This commit is contained in:
GnawOmiz 2025-06-30 18:38:47 -05:00 committed by GitHub
commit c3dbb0c5d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,7 +177,9 @@ export class EggHatchPhase extends Phase {
globalScene.time.delayedCall(1000, () => { globalScene.time.delayedCall(1000, () => {
if (!this.hatched) { if (!this.hatched) {
this.evolutionBgm = globalScene.playSoundWithoutBgm("evolution"); if (globalScene.audioSettings.masterVolume > 0) {
this.evolutionBgm = globalScene.playSoundWithoutBgm("evolution");
}
} }
}); });