diff options
Diffstat (limited to 'src/commands/info/icon.ts')
| -rw-r--r-- | src/commands/info/icon.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/info/icon.ts b/src/commands/info/icon.ts index 582494c..677fdaf 100644 --- a/src/commands/info/icon.ts +++ b/src/commands/info/icon.ts @@ -22,13 +22,13 @@ export default class IconCommand extends BushCommand { .setTimestamp() .setColor(util.colors.default) .setImage( - message.guild?.iconURL({ + message.guild!.iconURL({ size: 2048, dynamic: true, format: 'png' - }) + })! ) - .setTitle(message.guild.name); + .setTitle(message.guild!.name); await message.util.reply({ embeds: [embed] }); } } |
