diff --git a/commands/8ball.js b/commands/8ball.js index f645e01..0a43ce1 100644 --- a/commands/8ball.js +++ b/commands/8ball.js @@ -10,7 +10,7 @@ module.exports = { const question = args.slice(0).join(" ") if (!question) { - await message.channel.send(client.generateErrorMessage("You need to ask a question!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to ask a question!")); } else { await message.channel.send({embed: { "title": ":8ball: 8Ball", diff --git a/commands/bonk.js b/commands/bonk.js index 87dc359..764fc42 100644 --- a/commands/bonk.js +++ b/commands/bonk.js @@ -7,7 +7,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { await message.channel.send({embed: { "title": " Bonk", diff --git a/commands/cuddle.js b/commands/cuddle.js index 5825a73..165b3af 100644 --- a/commands/cuddle.js +++ b/commands/cuddle.js @@ -16,7 +16,7 @@ module.exports = { const gif = (gifchoices[index]); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { await message.channel.send({embed: { "title": ":heart: Cuddle", diff --git a/commands/hug.js b/commands/hug.js index c294752..c2eb6c3 100644 --- a/commands/hug.js +++ b/commands/hug.js @@ -15,7 +15,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/kiss.js b/commands/kiss.js index 921deb8..da73e95 100644 --- a/commands/kiss.js +++ b/commands/kiss.js @@ -15,7 +15,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/leskiss.js b/commands/leskiss.js index 85b3d79..e5003b7 100644 --- a/commands/leskiss.js +++ b/commands/leskiss.js @@ -25,7 +25,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/lick.js b/commands/lick.js index 92e3ec8..cb22eb0 100644 --- a/commands/lick.js +++ b/commands/lick.js @@ -14,7 +14,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/nom.js b/commands/nom.js index 314dce4..049a1cf 100644 --- a/commands/nom.js +++ b/commands/nom.js @@ -14,7 +14,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/pat.js b/commands/pat.js index 27a7db1..6c7a072 100644 --- a/commands/pat.js +++ b/commands/pat.js @@ -13,7 +13,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/poke.js b/commands/poke.js index 346ab47..92cf989 100644 --- a/commands/poke.js +++ b/commands/poke.js @@ -13,7 +13,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: { diff --git a/commands/setnick.js b/commands/setnick.js index a097ed1..a402423 100644 --- a/commands/setnick.js +++ b/commands/setnick.js @@ -18,7 +18,7 @@ module.exports = { "fields": [ { "name": "Changed nickname successfully!", - "value": "You need to have permission ``CHANGE_NICKNAME`` to change your nick!" + "value": `New Nickname: ${newnick}` }, { "name": "New Nickname", diff --git a/commands/slap.js b/commands/slap.js index f390d06..6ace9f1 100644 --- a/commands/slap.js +++ b/commands/slap.js @@ -7,7 +7,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { await message.channel.send({embed: { "title": ":anger: Slap", diff --git a/commands/snuggle.js b/commands/snuggle.js index e94afb9..8a42b8a 100644 --- a/commands/snuggle.js +++ b/commands/snuggle.js @@ -14,7 +14,7 @@ module.exports = { const taggedUser = message.mentions.users.first(); if(!taggedUser) { - await message.channel.send(client.generateErrorMessage("You need to @mention a user!", message.author.displayAvatarURL())); + await message.channel.send(client.generateErrorMessage("You need to @mention a user!")); } else { const gif = gifchoices[Math.floor(Math.random() * gifchoices.length)]; await message.channel.send({embed: {