diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 12:20:40 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 12:20:40 -0500 |
| commit | decb9a459d05ac0fedba72c358ffd7581dfa0163 (patch) | |
| tree | 8a5b52526a4a9aa1af8435139c695dc4ed1530f2 /commands | |
| parent | 6cc359e271480e7905e3050b492aec3d87d648cc (diff) | |
| download | PokeBot-decb9a459d05ac0fedba72c358ffd7581dfa0163.tar.gz PokeBot-decb9a459d05ac0fedba72c358ffd7581dfa0163.tar.bz2 PokeBot-decb9a459d05ac0fedba72c358ffd7581dfa0163.zip | |
Quick fix
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': { |
