Update Icon count checks
This commit is contained in:
parent
129b23eb2b
commit
a434ec9f49
6
index.js
6
index.js
|
@ -786,17 +786,17 @@ function playSlotMachine() {
|
|||
coinDifference = 12;
|
||||
} else if (iconCounts['💣'] === 2) {
|
||||
bombs = true;
|
||||
coinDifference = -7;
|
||||
coinDifference = -5;
|
||||
} else if (iconCounts['💣'] === 3) {
|
||||
bombs = true;
|
||||
coinDifference = -12;
|
||||
coinDifference = -8;
|
||||
}
|
||||
|
||||
if (iconCounts['💣'] === 1) {
|
||||
bombs = true;
|
||||
jackpot = false;
|
||||
triple = false;
|
||||
coinDifference = -5;
|
||||
coinDifference = -1;
|
||||
}
|
||||
|
||||
const result = {
|
||||
|
|
Loading…
Reference in a new issue