Add summon command

This commit is contained in:
2023-03-21 19:42:51 +01:00
parent c92eacb7fd
commit b964f4acfd

6
modules/summon/index.js Normal file
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!`);
})
}