From 9755ec8e3a071cfc0de0d2aefec123e83be0c91f Mon Sep 17 00:00:00 2001 From: Cooldude2606 <25043174+Cooldude2606@users.noreply.github.com> Date: Fri, 26 Jun 2026 14:20:32 +0100 Subject: [PATCH] Use `/sc` rather than `/c` --- exp_groups/instance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exp_groups/instance.ts b/exp_groups/instance.ts index 516c34bf..2421a92c 100644 --- a/exp_groups/instance.ts +++ b/exp_groups/instance.ts @@ -166,6 +166,6 @@ export class InstancePlugin extends BaseInstancePlugin { } 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) } }