diff options
Diffstat (limited to 'utils/voice_check_dialog.js')
| -rw-r--r-- | utils/voice_check_dialog.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/voice_check_dialog.js b/utils/voice_check_dialog.js new file mode 100644 index 0000000..fabf1a8 --- /dev/null +++ b/utils/voice_check_dialog.js @@ -0,0 +1,11 @@ +module.exports = { + name: 'voice_check_dialog', + description: '', + async execute(msg, args, bot) { + if (msg.guild.voiceConnection) { + msg.reply('i\'m already playing that lol'); + } else { + msg.reply('you need to join a voice channel first silly'); + } + } +};
\ No newline at end of file |