diff options
Diffstat (limited to 'commands/voice/join.js')
| -rw-r--r-- | commands/voice/join.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/voice/join.js b/commands/voice/join.js index 0445390..52528be 100644 --- a/commands/voice/join.js +++ b/commands/voice/join.js @@ -1,4 +1,5 @@ const { Command } = require('discord.js-commando'); +const emoji = require('emoji-random'); module.exports = class JoinVoice extends Command { constructor(client) { @@ -18,7 +19,7 @@ module.exports = class JoinVoice extends Command { run(msg) { if (!msg.guild.voice && msg.member.voice.channel) { msg.member.voice.channel.join(); - msg.reply('succesfully joined voice channel'); + msg.reply('succesfully joined voice channel' + emoji.random()); } else if (msg.guild.voice) { msg.reply('i\'m already in voice channel'); } else if (!msg.member.voice.channel) { |