diff --git a/src/index.ts b/src/index.ts index 3aaef0d..be99fa5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -255,7 +255,11 @@ export class Socket extends Client { } public async syncProtomux(action: string, id: number) { - return this.callModuleReturn("syncProtomux", { action, data: id }); + return this.callModuleReturn("syncProtomux", { + id: this.id, + action, + data: id, + }); } }