From bfc0420d7cd4dfe248979e2dac8d3f304640971c Mon Sep 17 00:00:00 2001 From: Starman <30315137+Starman3787@users.noreply.github.com> Date: Sat, 26 Oct 2024 11:14:21 +0100 Subject: [PATCH] Update Client.js --- src/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.js b/src/Client.js index 1ce33fd6..385d17db 100644 --- a/src/Client.js +++ b/src/Client.js @@ -534,7 +534,7 @@ class Client extends EventsEmitter { * @async * @throws {TypeError} */ - registerCommands(commands) { + async registerCommands(commands) { if ( !Array.isArray(commands) || !commands.every((c) => c instanceof Command)