From 1cb55cb8ce1966e7613e5e149697d6653e1a565f Mon Sep 17 00:00:00 2001 From: Max Isom Date: Wed, 4 Aug 2021 13:22:40 -0500 Subject: [PATCH] Fix help command --- src/commands/help.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/help.ts b/src/commands/help.ts index 90c5d98..3c230fb 100644 --- a/src/commands/help.ts +++ b/src/commands/help.ts @@ -55,7 +55,7 @@ export default class implements Command { return content; }, ''); - await msg.author.send(res); + await msg.author.send(res, {split: true}); await msg.react('🇩'); await msg.react('🇲'); }