diff options
Diffstat (limited to 'commands/voice/join.js')
| -rw-r--r-- | commands/voice/join.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/voice/join.js b/commands/voice/join.js index 9ee6f9d..12c6e60 100644 --- a/commands/voice/join.js +++ b/commands/voice/join.js @@ -21,9 +21,9 @@ module.exports = class JoinVoice extends Command { msg.member.voice.channel.join(); msg.reply('succesfully joined voice channel ' + emoji.random()); } else if (msg.guild.voice) { - msg.reply('i\'m already in voice channel'); + msg.reply('i\'m already in voice channel ' + emoji.random()); } else if (!msg.member.voice.channel) { - msg.reply('you\'re not in a voice channel'); + msg.reply('you\'re not in a voice channel ' + emoji.random()); } } };
\ No newline at end of file |