Disable auto-send on user join

Per @tzarebczan the auto message has been temporarily disabled.
This commit is contained in:
Ralph 2019-06-25 18:53:12 -04:00 committed by GitHub
parent cd57f22ffd
commit fcd53e72c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,8 @@
let hasPerms = require('../helpers.js').hasPerms;
let inPrivate = require('../helpers.js').inPrivate;
exports.custom = ['onUserJoin'];
/* Disabled Temporarily
exports.custom = ['onUserJoin'];
exports.onUserJoin = function(bot) {
bot.on('guildMemberAdd', member => {
member
@ -127,7 +128,7 @@ exports.onUserJoin = function(bot) {
});
});
};
*/
exports.commands = [
'welcome' // command that is in this file, every command needs it own export as shown below
];