This commit is contained in:
Daniel Odendahl Jr
2017-04-27 11:59:34 +00:00
parent 034faffb71
commit b030c3e4ee
+2
View File
@@ -23,6 +23,8 @@ module.exports = class MemberLogCommand extends Command {
run(message, args) {
const { channel } = args;
message.guild.settings.set('memberLog', channel.name);
console.log(channel);
console.log(message.guild.settings.get('memberLog'));
return message.say(`Member Log channel set to ${channel.name}.`);
}
};