Fix slots not accepting wins

This commit is contained in:
Dragon Fire
2020-06-02 20:34:28 -04:00
parent 7eca31e330
commit f08f2874ba
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ module.exports = class SlotsCommand extends Command {
${this.wrapSlots(slotOne, true)} : ${this.wrapSlots(slotTwo, true)} : ${this.wrapSlots(slotThree, true)}
------------------
| : : : **${slotOne === slotTwo === slotThree ? 'WIN!' : 'LOST'}** : : : |
| : : : **${slotOne === slotTwo && slotOne === slotThree ? 'WIN!' : 'LOST'}** : : : |
`);
}