From 10436c5bb19173574e7137e6e3bbcc4402a846c8 Mon Sep 17 00:00:00 2001 From: Pierre <19956672+iwa@users.noreply.github.com> Date: Fri, 11 Sep 2020 13:24:22 +0200 Subject: [PATCH] fix some outputs --- src/commands/utility/help.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/utility/help.ts b/src/commands/utility/help.ts index 3a213afa..dc25c770 100644 --- a/src/commands/utility/help.ts +++ b/src/commands/utility/help.ts @@ -97,13 +97,13 @@ async function sendHelp(msg: Message, guildConf: any) { await msg.channel.send(member) await msg.author.send(mod) } catch (ex) { - return msg.channel.send(":x: > **Please open your DMs, I can't reach you**") + return msg.channel.send(":x: **Please open your DMs, I can't reach you**") } else try { await msg.channel.send(member) } catch { - return msg.channel.send(":x: > **Commands list loading, redo the commands in a few seconds!**") + return msg.channel.send(":x: **Commands list loading, redo the command in a few seconds!**") } }