diff options
| author | Max Isom <[email protected]> | 2021-08-04 13:22:40 -0500 |
|---|---|---|
| committer | Max Isom <[email protected]> | 2021-08-04 13:22:40 -0500 |
| commit | 1cb55cb8ce1966e7613e5e149697d6653e1a565f (patch) | |
| tree | 052f55e5aa8a68e4d6d28ae6c8f0f133ea57fc8b | |
| parent | a5dce868c4a88c652dbc9d3182cbe1bdb9fdb417 (diff) | |
| download | muse-1cb55cb8ce1966e7613e5e149697d6653e1a565f.tar.xz muse-1cb55cb8ce1966e7613e5e149697d6653e1a565f.zip | |
Fix help command
| -rw-r--r-- | src/commands/help.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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('🇲'); } |
