Use /sc rather than /c

This commit is contained in:
Cooldude2606
2026-06-26 14:20:32 +01:00
parent 6b99378fa2
commit 9755ec8e3a
+1 -1
View File
@@ -166,6 +166,6 @@ export class InstancePlugin extends BaseInstancePlugin {
} }
async luaSend(receiver: string, json: any) { async luaSend(receiver: string, json: any) {
await this.instance.sendRcon(`/c exp_groups.${receiver}(helpers.json_to_table[=[${JSON.stringify(json)}]=])`, true) await this.instance.sendRcon(`/sc exp_groups.${receiver}(helpers.json_to_table[=[${JSON.stringify(json)}]=])`, true)
} }
} }