*Pass socket id

This commit is contained in:
Derrick Hammer 2023-04-06 17:34:23 -04:00
parent b274b82d3c
commit 1d0718af05
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 5 additions and 1 deletions

View File

@ -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,
});
}
}