Explorar el Código

Fixes command execute issue

main
Eric Amodio hace 2 años
padre
commit
87f5910d11
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/system/command.ts

+ 1
- 1
src/system/command.ts Ver fichero

@ -41,7 +41,7 @@ export function executeCommand(
command: SupportedCommands,
...args: T
): Thenable<U> {
return commands.executeCommand<U>(command, args);
return commands.executeCommand<U>(command, ...args);
}
export function executeCoreCommand<T = unknown, U = any>(command: CoreCommands, arg: T): Thenable<U>;

Cargando…
Cancelar
Guardar