diff --git a/commands/images/fetish.js b/commands/images/fetish.js index d0b4a5b..5a06759 100644 --- a/commands/images/fetish.js +++ b/commands/images/fetish.js @@ -21,7 +21,7 @@ class FetishCommand extends Command { let Attachment = (message.attachments).array(); let image = args.image; if (!Attachment[0] && !image) - image = message.author.displayAvatarURL; + image = message.author.displayAvatarURL(); else if(Attachment[0] && Attachment[0].url.endsWith('gif')) return message.channel.send('Gif dosent work, sorry'); else if (!image) diff --git a/commands/images/god.js b/commands/images/god.js index 3f9f295..b8d0ffd 100644 --- a/commands/images/god.js +++ b/commands/images/god.js @@ -22,7 +22,7 @@ class GodCommand extends Command { let Attachment = (message.attachments).array(); let image = args.image; if (!Attachment[0] && !image) - image = message.author.displayAvatarURL; + image = message.author.displayAvatarURL(); else if (Attachment[0] && Attachment[0].url.endsWith('gif')) return message.channel.send('Gif dosent work, sorry'); else if (!image) diff --git a/commands/images/idubbbz.js b/commands/images/idubbbz.js index b340774..9424a89 100644 --- a/commands/images/idubbbz.js +++ b/commands/images/idubbbz.js @@ -28,7 +28,7 @@ class IdubbbzCommand extends Command { let Attachment = (message.attachments).array(); let image = args.image; if (!Attachment[0] && !image) - image = message.author.displayAvatarURL; + image = message.author.displayAvatarURL(); else if (Attachment[0] && Attachment[0].url.endsWith('gif')) return message.channel.send('Gif dosent work, sorry'); else if (!image) diff --git a/commands/images/idubbbzpaint.js b/commands/images/idubbbzpaint.js index f1fd833..843f4f2 100644 --- a/commands/images/idubbbzpaint.js +++ b/commands/images/idubbbzpaint.js @@ -27,7 +27,7 @@ class IdubbbzPaintCommand extends Command { let Attachment = (message.attachments).array(); let image = args.image; if (!Attachment[0] && !image) - image = message.author.displayAvatarURL; + image = message.author.displayAvatarURL(); else if (Attachment[0] && Attachment[0].url.endsWith('gif')) return message.channel.send('Gif dosent work, sorry'); else if (!image) diff --git a/commands/images/like.js b/commands/images/like.js index f2c60ff..56571f1 100644 --- a/commands/images/like.js +++ b/commands/images/like.js @@ -21,7 +21,7 @@ class LikeCommand extends Command { let Attachment = (message.attachments).array(); let image = args.image; if (!Attachment[0] && !image) - image = message.author.displayAvatarURL; + image = message.author.displayAvatarURL(); else if (Attachment[0] && Attachment[0].url.endsWith('gif')) return message.channel.send('Gif dosent work, sorry'); else if (!image) diff --git a/commands/images/ugly.js b/commands/images/ugly.js index 6983f07..005f3de 100644 --- a/commands/images/ugly.js +++ b/commands/images/ugly.js @@ -21,7 +21,7 @@ class UglyCommand extends Command { let Attachment = (message.attachments).array(); let image = args.image; if (!Attachment[0] && !image) - image = message.author.displayAvatarURL; + image = message.author.displayAvatarURL(); else if (Attachment[0] && Attachment[0].url.endsWith('gif')) return message.channel.send('Gif dosent work, sorry'); else if (!image) diff --git a/event/listeners/messageReactionAdd.js b/event/listeners/messageReactionAdd.js index 19d4649..524666a 100644 --- a/event/listeners/messageReactionAdd.js +++ b/event/listeners/messageReactionAdd.js @@ -28,7 +28,7 @@ class MessageReactionAddListener extends Listener { const starEmbed = new MessageEmbed() .setColor(reaction.message.member.displayHexColor) .setDescription(messageContent) - .setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL) + .setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL()) .setTimestamp(); channel.send({ embed: starEmbed}); @@ -47,7 +47,7 @@ class MessageReactionAddListener extends Listener { const shameEmbed = new MessageEmbed() .setColor(reaction.message.member.displayHexColor) .setDescription(messageContent) - .setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL) + .setAuthor(reaction.message.author.username, reaction.message.author.displayAvatarURL()) .setTimestamp(); channel.send({ embed: shameEmbed});