From d81bb2ed08ddaa2be61fe6514ed3f75c28e5d351 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 17 Jan 2021 12:57:41 -0500 Subject: [PATCH] Eh, Y can cause dead games --- commands/games-sp/anagramica.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-sp/anagramica.js b/commands/games-sp/anagramica.js index 651c2e74..fd574602 100644 --- a/commands/games-sp/anagramica.js +++ b/commands/games-sp/anagramica.js @@ -4,7 +4,7 @@ const request = require('node-superfetch'); const { shuffle, reactIfAble, fetchHSUserDisplay } = require('../../util/Util'); const scores = require('../../assets/json/anagramica'); const pool = 'abcdefghijklmnopqrstuvwxyz'.split(''); -const vowels = ['a', 'e', 'i', 'o', 'u', 'y']; +const vowels = ['a', 'e', 'i', 'o', 'u']; const { SUCCESS_EMOJI_ID, FAILURE_EMOJI_ID } = process.env; module.exports = class AnagramicaCommand extends Command {