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;
|
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 = {
|
||||||
|
|
Loading…
Reference in a new issue