awacke1 commited on
Commit
16b4e0f
Β·
1 Parent(s): 024ed5f

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +2 -2
index.html CHANGED
@@ -98,7 +98,7 @@
98
  var winAmount = 0;
99
 
100
  // Deduct 25 cents
101
- var newBalance = parseFloat(balanceAmount.textContent) - 0.25;
102
  if (newBalance < 0) {
103
  alert("Insufficient balance.");
104
  return;
@@ -119,7 +119,7 @@
119
  } else if (matches === 4) {
120
  winAmount += 5;
121
  } else if (matches === 5) {
122
- winAmount += 100;
123
  }
124
  }
125
 
 
98
  var winAmount = 0;
99
 
100
  // Deduct 25 cents
101
+ var newBalance = parseFloat(balanceAmount.textContent) - 0.50;
102
  if (newBalance < 0) {
103
  alert("Insufficient balance.");
104
  return;
 
119
  } else if (matches === 4) {
120
  winAmount += 5;
121
  } else if (matches === 5) {
122
+ winAmount += 20;
123
  }
124
  }
125