This commit is contained in:
Emily 2020-03-26 15:38:04 +11:00
commit c599691f6e
4 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ exports.run = async (client, message, [args, ...reason], level) => {
if (channel) {
let embed = new Discord.MessageEmbed();
embed.setColor("#a652bb");
embed.setAuthor("User muted!", user.user.avatarURL({format: "png", dynamic: true}));
embed.setAuthor("User muted!", user.user.avatarURL({format: "png", dynamic: true, size: 2048}));
embed.setDescription(
`• User: ${user} (${user.user.id})\n• Mod: ${message.author} (${message.author.id})\n• Reason: ${muteReason}`
);

View File

@ -43,7 +43,7 @@ exports.run = async (client, message, args, level) => {
if (channel) {
let embed = new Discord.MessageEmbed();
embed.setColor(embColour);
embed.setAuthor(raidToggle, message.author.avatarURL({dynamic: true}));
embed.setAuthor(raidToggle, message.author.avatarURL({format: "png", dynamic: true, size: 2048}));
embed.setDescription(`• Mod: ${message.author} (${message.author.id})`)
try {
channel.send({ embed });

View File

@ -63,7 +63,7 @@ exports.run = async (client, message, args, level) => {
if (channel) {
let embed = new Discord.MessageEmbed();
embed.setColor("#7a2f8f");
embed.setAuthor("User unmuted!", user.user.avatarURL({format: "png", dynamic: true}));
embed.setAuthor("User unmuted!", user.user.avatarURL({format: "png", dynamic: true, size: 2048}));
embed.setDescription(`• User: ${user} (${user.user.id})\n• Mod: ${message.author} (${message.author.id})`)
try {
channel.send({ embed });

View File

@ -230,4 +230,4 @@ module.exports = async (client, message) => {
client.logger.cmd(`${client.config.permLevels.find(l => l.level === level).name} ${message.author.username} (${message.author.id}) ran command ${cmd.help.name}`);
cmd.run(client, message, args, level);
};
};