Add summon command

master
Talon 2023-03-21 19:42:51 +01:00
parent c92eacb7fd
commit b964f4acfd
1 changed files with 6 additions and 0 deletions

View File

@ -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!`);
})
}