diff --git a/commands/Economy/slots.js b/commands/Economy/slots.js index 29b15768..1ab7dc2c 100644 --- a/commands/Economy/slots.js +++ b/commands/Economy/slots.js @@ -40,11 +40,9 @@ class Slots extends Command { amount = Math.round(amount); function getCredits(number, isJackpot) { - if (!isJackpot) { - number = number * 1.5; - } else if (isJackpot) { - number = number * 4; - }; + if (!isJackpot) number = number * 1.5; + else if (isJackpot) number = number * 4; + return Math.round(number); };