diff options
Diffstat (limited to 'src/commands/dev/sh.ts')
-rw-r--r-- | src/commands/dev/sh.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/dev/sh.ts b/src/commands/dev/sh.ts index 5ef72b1..e6398b6 100644 --- a/src/commands/dev/sh.ts +++ b/src/commands/dev/sh.ts @@ -44,7 +44,7 @@ export default class ShCommand extends BushCommand { const embed = new MessageEmbed() .setColor(util.colors.gray) - .setFooter(message.author.tag, message.author.avatarURL({ dynamic: true }) ?? undefined) + .setFooter({ text: message.author.tag, iconURL: message.author.avatarURL({ dynamic: true }) ?? undefined }) .setTimestamp() .setTitle('Shell Command') .addField('📥 Input', await util.codeblock(input, 1024, 'sh', true)) |