add timer for updating game money on crash

This commit is contained in:
Hepatica
2024-04-21 16:11:26 +02:00
parent 70b8937ef3
commit 4648607e3a

View File

@@ -305,8 +305,9 @@ export default {
.then((response) => {
console.log(response)
this.startGame = false
this.updateUserMoney()
setTimeout(() => {
this.updateUserMoney();
}, 3000);
})
}
},