diff options
Diffstat (limited to 'src/commands/utilities/viewRaw.ts')
-rw-r--r-- | src/commands/utilities/viewRaw.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/commands/utilities/viewRaw.ts b/src/commands/utilities/viewRaw.ts index 8114cef..057d86d 100644 --- a/src/commands/utilities/viewRaw.ts +++ b/src/commands/utilities/viewRaw.ts @@ -2,7 +2,6 @@ import { Arg, BushCommand, clientSendAndPermCheck, - codeblock, colors, emojis, inspect, @@ -114,6 +113,6 @@ export default class ViewRawCommand extends BushCommand { .setTimestamp(message.createdTimestamp) .setColor(message.member?.roles?.color?.color ?? colors.default) .setTitle('Raw Message Information') - .setDescription(await codeblock(content, 2048, lang)); + .setDescription(await message.client.utils.codeblock(content, 2048, lang)); } } |