diff --git a/commands/util/memberchannel.js b/commands/util/memberchannel.js index 6467417f..8833c5ed 100644 --- a/commands/util/memberchannel.js +++ b/commands/util/memberchannel.js @@ -22,6 +22,7 @@ module.exports = class MemberLogCommand extends Command { run(message, args) { const { channel } = args; - return message.guild.settings.set('memberLog', channel.name); + message.guild.settings.set('memberLog', channel.name); + return message.say('Member Log channel set to `channel.name`.'); } }; diff --git a/commands/util/modchannel.js b/commands/util/modchannel.js index d0d77407..9982d4dd 100644 --- a/commands/util/modchannel.js +++ b/commands/util/modchannel.js @@ -22,6 +22,7 @@ module.exports = class ModChannelCommand extends Command { run(message, args) { const { channel } = args; - return message.guild.settings.set('modLog', channel.name); + message.guild.settings.set('modLog', channel.name); + return message.say('Mod Log channel set to `channel.name`.'); } };