From 486c2e1e708fe4c63f65171e578f74b9de132b76 Mon Sep 17 00:00:00 2001 From: neroignis Date: Thu, 30 Apr 2020 11:57:14 +0200 Subject: [PATCH] Fix Bug #1 --- js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index ba57529..470c4ff 100644 --- a/js/app.js +++ b/js/app.js @@ -173,7 +173,7 @@ let app = new Vue({ this.roundActive = false; alertify.notify('Draw!'); this.draw(); - } else if (this.dealerScore > 22) { + } else if (this.dealerScore > 21) { this.roundActive = false; alertify.notify('Dealer is plus, you win'); this.win();