forked from Supositware/Haha-Yes
23 lines
No EOL
636 B
JavaScript
23 lines
No EOL
636 B
JavaScript
const { Command } = require('discord.js-commando');
|
|
module.exports = class StatusCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'status',
|
|
group: 'owner',
|
|
memberName: 'status',
|
|
description: 'Change the status of the bot',
|
|
ownerOnly: true,
|
|
args: [
|
|
{
|
|
key: 'status',
|
|
prompt: 'Wich status should i have?',
|
|
type: 'string',
|
|
}
|
|
]
|
|
});
|
|
}
|
|
|
|
run(message, { status }) {
|
|
this.client.user.setActivity(status);
|
|
}
|
|
}; |