From 8eff243306ccc321e593ab52a3bbf474b2f0908d Mon Sep 17 00:00:00 2001 From: Kostya Date: Sun, 28 Jan 2024 02:35:28 +0300 Subject: [PATCH] fixed bug with circles if end --- luckydiamond/src/pages/games-pages/SapergamePage.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/luckydiamond/src/pages/games-pages/SapergamePage.vue b/luckydiamond/src/pages/games-pages/SapergamePage.vue index 8c37c87..0e79f42 100644 --- a/luckydiamond/src/pages/games-pages/SapergamePage.vue +++ b/luckydiamond/src/pages/games-pages/SapergamePage.vue @@ -421,12 +421,15 @@ export default { try { this.offEventPointers = false this.gameStart = false - this.flippedCards = [] - this.unCorrectClick = [] - this.CorrectsClick = [] this.gamesCircle = 0 await GetWinningAmount({ SearchToken: GetCookie('SearchToken'), AuthToken: GetCookie('AUTHTOKEN') }) this.winningAmount = 0 + + this.ValidationPlay.winGame = true + setTimeout(() => { + this.ValidationPlay.winGame = false + }, 1500) + return eventBus.emit('Updatebalance') } catch (e) {