From 3eb4e92c2f2b4149dfc596854b9bea6396554175 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 19 May 2021 17:36:14 -0400 Subject: [PATCH] Fix --- commands/search/smash-bros.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/smash-bros.js b/commands/search/smash-bros.js index 19473c67..3f4fd8eb 100644 --- a/commands/search/smash-bros.js +++ b/commands/search/smash-bros.js @@ -75,7 +75,7 @@ module.exports = class SmashBrosCommand extends Command { slug: fighter.displayName.en_US .replaceAll('
', '') .replaceAll(' ', '_') - .replace(/[^A-Z_]/i, '') + .replace(/[^A-Z_&]/ig, '') .toLowerCase() }; fighters.push(data);