aboutsummaryrefslogtreecommitdiff
path: root/commands/Utility
diff options
context:
space:
mode:
Diffstat (limited to 'commands/Utility')
-rw-r--r--commands/Utility/nick.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/commands/Utility/nick.js b/commands/Utility/nick.js
index 961693c..bec9578 100644
--- a/commands/Utility/nick.js
+++ b/commands/Utility/nick.js
@@ -13,8 +13,10 @@ exports.run = async (bot, msg, args) => {
msg.member.setNickname(args.join(' '), 'Requested by bot');
msg.channel.send('Changed nickname to: ' + args.join(' '));
const logChannel = await bot.plugins.settings.getStr('logs', msg.member.guild.id);
-
- bot.channels.find('id', logChannel).send(
+ if (!logChannel) return;
+ const channelObj = bot.channels.find('id', logChannel);
+ if (!channelObj) return;
+ channelObj.send(
new RichEmbed()
.setColor(0x00ae86)
.setTitle(`Nickname: ${msg.author.tag}`)