Browse Source

Fix bug #2

feature/split
neroignis 5 years ago
parent
commit
665b818e78
  1. 4
      js/app.js

4
js/app.js

@ -192,11 +192,11 @@ let app = new Vue({ @@ -192,11 +192,11 @@ let app = new Vue({
},
draw() {
this.money += this.bet;
this.money = (parseInt(this.money) + parseInt(this.bet));
},
win() {
this.money += this.bet * 2;
this.money += (parseInt(this.bet) * 2);
},
endRound() {

Loading…
Cancel
Save