Update Icon count checks

This commit is contained in:
Darien Rousseau 2023-08-14 18:34:52 -06:00 committed by GitHub
parent 129b23eb2b
commit a434ec9f49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -786,17 +786,17 @@ function playSlotMachine() {
coinDifference = 12; coinDifference = 12;
} else if (iconCounts['💣'] === 2) { } else if (iconCounts['💣'] === 2) {
bombs = true; bombs = true;
coinDifference = -7; coinDifference = -5;
} else if (iconCounts['💣'] === 3) { } else if (iconCounts['💣'] === 3) {
bombs = true; bombs = true;
coinDifference = -12; coinDifference = -8;
} }
if (iconCounts['💣'] === 1) { if (iconCounts['💣'] === 1) {
bombs = true; bombs = true;
jackpot = false; jackpot = false;
triple = false; triple = false;
coinDifference = -5; coinDifference = -1;
} }
const result = { const result = {