diff --git a/src/system/command.ts b/src/system/command.ts index 3e093ee..7749601 100644 --- a/src/system/command.ts +++ b/src/system/command.ts @@ -41,7 +41,7 @@ export function executeCommand( command: SupportedCommands, ...args: T ): Thenable { - return commands.executeCommand(command, args); + return commands.executeCommand(command, ...args); } export function executeCoreCommand(command: CoreCommands, arg: T): Thenable;