Add summon command
parent
c92eacb7fd
commit
b964f4acfd
|
@ -0,0 +1,6 @@
|
|||
module.exports = function (bot, api) {
|
||||
api.registerCommand("summon", async (args, message) => {
|
||||
await api.joinChannel(message.member.voice.channel);
|
||||
api.respond(message, `Hi!`);
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue