diff --git a/services/app/apps/codebattle/assets/js/widgets/machines/game.js b/services/app/apps/codebattle/assets/js/widgets/machines/game.js index abd335c8a..1bc195347 100644 --- a/services/app/apps/codebattle/assets/js/widgets/machines/game.js +++ b/services/app/apps/codebattle/assets/js/widgets/machines/game.js @@ -372,7 +372,9 @@ export const config = { // game actions soundWin: () => { - sound.play('win'); + // sound.play('win'); + // TODO: fixes win sound playback, THIS IS CRUTCH, use other method + setTimeout(() => sound.play('win'), 100); }, soundGiveUp: () => { sound.play('give_up');