diff options
Diffstat (limited to 'commands/Teams/leave.js')
| -rw-r--r-- | commands/Teams/leave.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/commands/Teams/leave.js b/commands/Teams/leave.js index c22a1f2..fb02e16 100644 --- a/commands/Teams/leave.js +++ b/commands/Teams/leave.js @@ -1,15 +1,15 @@ exports.run = async (bot, msg) => { - if (msg.member.roles.find('name', 'Mystic')) { - msg.member.removeRole(msg.guild.roles.find('name', 'Mystic')); - msg.reply('Alright, you are not longer in team Mystic.'); + if (msg.member.roles.find('name', 'Aqua')) { + msg.member.removeRole(msg.guild.roles.find('name', 'Aqua')); + msg.reply('Alright, you are not longer in team Aqua.'); } - else if (msg.member.roles.find('name', 'Valor')) { - msg.member.removeRole(msg.guild.roles.find('name', 'Valor')); - msg.reply('Alright, you are not longer in team Valor.'); + else if (msg.member.roles.find('name', 'Rocket')) { + msg.member.removeRole(msg.guild.roles.find('name', 'Rocket')); + msg.reply('Alright, you are not longer in team Rocket.'); } - else if (msg.member.roles.find('name', 'Instinct')) { - msg.member.removeRole(msg.guild.roles.find('name', 'Instinct')); - msg.reply('Alright, you are not longer in team Instinct.'); + else if (msg.member.roles.find('name', 'Magma')) { + msg.member.removeRole(msg.guild.roles.find('name', 'Magma')); + msg.reply('Alright, you are not longer in team Magma.'); } else { msg.reply('You are not in a team.'); |
