From 6a350b30075dbd55ec73d729160ea514aeba5f34 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Tue, 11 Aug 2020 22:47:38 +0200 Subject: [PATCH] =?UTF-8?q?=E2=8C=9B=20Discord=20collection=20>=20Enmap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- events/message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/message.js b/events/message.js index 0de7eca..4c5340b 100644 --- a/events/message.js +++ b/events/message.js @@ -15,7 +15,7 @@ module.exports = (client, message) => { const args = message.content.slice(prefix.length).trim().split(/ +/g); const command = args.shift().toLowerCase(); - //Grab the command data from the client.commands Enmap + //Grab the command data from the client.commands (Discord collection) const cmd = client.commands.get(command); //If that command doesn't exist, silently exit and do nothing