From 6944786ca45b9bb6b23cfa9a3f7592fb8ac5866b Mon Sep 17 00:00:00 2001 From: Tayou <31988415+TayouVR@users.noreply.github.com> Date: Tue, 27 Sep 2022 17:53:26 +0200 Subject: [PATCH] Fix: ?command and !command -> /command in three log responses --- src/logs.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/logs.ts b/src/logs.ts index 21f0311..d0470c5 100644 --- a/src/logs.ts +++ b/src/logs.ts @@ -26,7 +26,7 @@ const javaAnalyzer: Analyzer = async (text) => { return [ 'Wrong Java Version', - `Please switch to the following: \`${ver}\`\nFor more information, type \`!java\``, + `Please switch to the following: \`${ver}\`\nFor more information, type \`/tag java\``, ]; } return null; @@ -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 `!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 { 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 PolyMC. (See ?log)' + 'Please use https://mclo.gs or another paste provider and send logs using the Log Upload feature in PolyMC. (See \`/tag log\`)' ) .setColor(COLORS.red); return embed;