This commit is contained in:
Dragon Fire
2021-03-07 08:35:03 -05:00
parent b64b7dfd91
commit aea29b00f6
+1 -1
View File
@@ -52,6 +52,6 @@ module.exports = class IncorrectQuoteCommand extends Command {
if (characters.length >= 6) { if (characters.length >= 6) {
quote = quote.replace(/\{F\}/g, characters[5]).replace(/\{L\}/g, characters[5].toUpperCase()); quote = quote.replace(/\{F\}/g, characters[5]).replace(/\{L\}/g, characters[5].toUpperCase());
} }
return quote; return quote;
} }
}; };