diff --git a/lib.js b/lib.js index c421bcf..73bbd83 100644 --- a/lib.js +++ b/lib.js @@ -194,6 +194,7 @@ class _Client extends Client let commandName=message.content.split('!')[1].split(' ')[0]; let args = message.content.split(' '); args = args.slice(1); + args = args.filter(x => x !== '') if(this.commands.get(commandName)) { let needsAdmin = this.commands.get(commandName).needsAdmin;