From 73d5c8a9acea05e8e898762f85d8f366eb58ff6d Mon Sep 17 00:00:00 2001 From: masterhc Date: Sat, 10 Feb 2024 22:52:50 +0000 Subject: [PATCH] Clearing multiple spaces on argument array. All messages with sequential spaces will have them removed when transformed into the argument array. --- lib.js | 1 + 1 file changed, 1 insertion(+) 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;