This commit is contained in:
2025-05-23 01:00:37 +00:00
parent 4905595cbb
commit 7344bf0f70
5 changed files with 119 additions and 33 deletions

View File

@ -121,7 +121,7 @@ export class CommandHandler implements ICommandHandler {
// Process each command separately (recursively call processCommand)
for (const cmd of commands) {
this.processCommand(socket, cmd);
await this.processCommand(socket, cmd);
}
return;
}