Browse Source

Changed payout amount

Lauren Green 6 years ago
parent
commit
7fc8ebfa05
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/main/java/io/zipcoder/casino/Yahtzee.java

+ 2
- 2
src/main/java/io/zipcoder/casino/Yahtzee.java View File

@@ -196,9 +196,9 @@ public class Yahtzee extends DiceGame implements Game, Gamble{
196 196
         } else if (score > 400) {
197 197
             payOut = getBid() * 5;
198 198
         } else if (score > 300) {
199
-            payOut = getBid() * 2;
199
+            payOut = getBid() * 3;
200 200
         } else if (score > 200) {
201
-            payOut = getBid();
201
+            payOut = getBid() * 2;
202 202
         } else {
203 203
             payOut = 0;
204 204
         }