feat: change status message

This commit is contained in:
Pedro Lopez
2020-02-08 01:32:15 -04:00
parent f2b286a319
commit edc2c7022d
3 changed files with 15 additions and 0 deletions

View File

@@ -127,6 +127,10 @@ client.on('message', async msg => {
msg.reply(new Location(37.422, -122.084, 'Googleplex\nGoogle Headquarters'));
} else if(msg.location) {
msg.reply(msg.location);
} else if(msg.body.startsWith('!status ')) {
const newStatus = msg.body.split(' ')[1];
await client.setStatus(newStatus);
msg.reply(`Status was updated to *${newStatus}*`);
}
});