diff --git a/src/commands/utils/info.ts b/src/commands/utils/info.ts index 4303e14..31d77c4 100644 --- a/src/commands/utils/info.ts +++ b/src/commands/utils/info.ts @@ -108,12 +108,12 @@ export default { const userResult: EmbedBuilder = new EmbedBuilder() .setTitle(`${targetGlobal.displayName}'s information`) .setColor(`${guildData.color}`) - .setThumbnail(`${targetGlobal.displayAvatarURL()}`) + .setThumbnail(`${targetGlobal.displayAvatarURL({dynamic: true, size: 2048})}`) .setFooter({ text: guildData.footer }) .setImage(targetGlobal.bannerURL({ - size: 1024, + size: 2048, dynamic: true })) .setDescription(` @@ -144,7 +144,7 @@ export default { const serverResult: EmbedBuilder = new EmbedBuilder() .setTitle(`${guild.name} Informations`) .setColor(guildData.color) - .setThumbnail(guild.iconURL({dynamic: true, size: 1024})) + .setThumbnail(guild.iconURL({dynamic: true, size: 2048})) .setFooter({ text: guildData.footer }) diff --git a/src/commands/utils/ping.ts b/src/commands/utils/ping.ts index eec8d73..2bfd070 100644 --- a/src/commands/utils/ping.ts +++ b/src/commands/utils/ping.ts @@ -1,4 +1,5 @@ import { MessageFlags, SlashCommandBuilder } from 'discord.js'; +import emoji from '../../../assets/emoji.json' assert { type: "json" }; export default { data: new SlashCommandBuilder() @@ -7,7 +8,7 @@ export default { async execute(interaction: CommandInteraction) { const time: number = Date.now(); await interaction.reply({ - content: '🏓 | Pong!', + content: `${emoji.answer.loading} | Calculating your ping !`, flags: MessageFlags.Ephemeral });