summaryrefslogtreecommitdiff
path: root/src/commands/voice/squeak.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/voice/squeak.js')
-rw-r--r--src/commands/voice/squeak.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/commands/voice/squeak.js b/src/commands/voice/squeak.js
deleted file mode 100644
index 9d2b6a3..0000000
--- a/src/commands/voice/squeak.js
+++ /dev/null
@@ -1,29 +0,0 @@
-const { Command } = require('discord.js-commando');
-const emoji = require('emoji-random');
-
-module.exports = class SqueakVoice extends Command {
- constructor(client) {
- super(client, {
- name: 'squeak',
- group: 'voice',
- memberName: 'squeak',
- description: 'squeak',
- guildOnly: true,
- examples: ['s5n!queak']
- });
- }
- async run(msg) {
- if (msg.member.voice.channel && !msg.guild.voice) {
- const connection = await msg.member.voice.channel.join();
- const dispatcher = connection.play('./assets/audio/squeak.wav');
-
- dispatcher.on('finish', () => {
- connection.disconnect();
- });
- } else if (msg.guild.voice) {
- msg.reply('i\'m already playing that lol ' + emoji.random());
- } else {
- msg.reply('you need to join a voice channel first silly ' + emoji.random());
- }
- }
-}; \ No newline at end of file