diff options
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/join.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/join.js b/commands/join.js index 9f8b79a..49ec11c 100644 --- a/commands/join.js +++ b/commands/join.js @@ -1,5 +1,5 @@ exports.run = async (bot, msg, args) => { - if (!args.length < 1) return msg.reply('Please choose a team to join'); + if (args.length < 1) return msg.reply('Please choose a team to join'); switch(args[0]) { case 'mystic': { |
