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({
}, },
draw() { draw() {
this.money += this.bet; this.money = (parseInt(this.money) + parseInt(this.bet));
}, },
win() { win() {
this.money += this.bet * 2; this.money += (parseInt(this.bet) * 2);
}, },
endRound() { endRound() {

Loading…
Cancel
Save