This commit is contained in:
Daniel Odendahl Jr
2017-04-27 03:02:45 +00:00
parent 0be6029572
commit 6fda27485c
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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`.');
}
};
+2 -1
View File
@@ -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`.');
}
};