Make status customizable via config and change default wording from 'DM' to 'Message'

master
Miikka Virtanen 2016-12-06 16:33:53 +02:00
parent 041c3fe855
commit 72db4ac3d3
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ bot.on('ready', () => {
process.exit(0);
}
bot.editStatus(null, {name: 'DM me for help'});
bot.editStatus(null, {name: config.status || 'Message me for help'});
});
function getModmailChannelInfo(channel) {