Fix daily run freeze (#1025)

This commit is contained in:
William Burleson 2024-05-17 06:51:48 -04:00 committed by GitHub
parent edf3a6aa36
commit 10437142b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3545,10 +3545,12 @@ export class GameOverModifierRewardPhase extends ModifierRewardPhase {
this.scene.addModifier(newModifier).then(() => {
this.scene.playSound('level_up_fanfare');
this.scene.ui.setMode(Mode.MESSAGE);
this.scene.ui.fadeIn(250).then(() => {
this.scene.ui.showText(`You received\n${newModifier.type.name}!`, null, () => {
this.scene.time.delayedCall(1500, () => this.scene.arenaBg.setVisible(true));
resolve();
}, null, true, 1500);
});
});
})
}