fix formatting

This commit is contained in:
Ryan Cao 2022-10-21 20:04:48 +08:00
parent 3e56cecbbf
commit 13effc58fe
No known key found for this signature in database
5 changed files with 164 additions and 153 deletions

View file

@ -167,7 +167,7 @@ const optifineAnalyzer: Analyzer = async (text) => {
if (matchesOpti || matchesOptiFabric) {
return [
'Possible Optifine Problems',
'OptiFine is known to cause problems when paired with other mods. Try to disable OptiFine and see if the issue persists.\nCheck \`/tag optifine\` for more info & alternatives you can use.',
'OptiFine is known to cause problems when paired with other mods. Try to disable OptiFine and see if the issue persists.\nCheck `/tag optifine` for more info & alternatives you can use.',
];
}
return null;
@ -230,7 +230,7 @@ export async function parseLog(s: string): Promise<EmbedBuilder | null> {
const embed = new EmbedBuilder()
.setTitle('pastebin.com detected')
.setDescription(
'Please use https://mclo.gs or another paste provider and send logs using the Log Upload feature in Prism Launcher. (See \`/tag log\`)'
'Please use https://mclo.gs or another paste provider and send logs using the Log Upload feature in Prism Launcher. (See `/tag log`)'
)
.setColor(COLORS.red);
return embed;