From 73c568c0846024ec369979f34aa972127e410dd2 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 Mar 2024 19:18:55 -0400 Subject: [PATCH] Fix --- commands/pokedex/pokedex.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/pokedex/pokedex.js b/commands/pokedex/pokedex.js index 9680ee34..296dae73 100644 --- a/commands/pokedex/pokedex.js +++ b/commands/pokedex/pokedex.js @@ -3,7 +3,7 @@ const { MessageEmbed } = require('discord.js'); const { stripIndents } = require('common-tags'); const { arrayEquals, reactIfAble } = require('../../util/Util'); const { MEGA_EVOLVE_EMOJI_NAME, MEGA_EVOLVE_EMOJI_ID } = process.env; -const genGames = [null, 'rb', 'gs', 'rs', 'dp', 'bw', 'xy', 'sm', 'ss']; +const genGames = [null, 'rb', 'gs', 'rs', 'dp', 'bw', 'xy', 'sm', 'ss', 'sv']; const games = { rb: 'Red/Blue', gs: 'Gold/Silver', @@ -12,7 +12,8 @@ const games = { bw: 'Black/White', xy: 'X/Y', sm: 'Sun/Moon', - ss: 'Sword/Shield' + ss: 'Sword/Shield', + sv: 'Scarlet/Violet' }; module.exports = class PokedexCommand extends Command {