From 9b8f8c3f5310b6af15edf8ff933e2d63e05707a7 Mon Sep 17 00:00:00 2001 From: Caleb Date: Thu, 8 Sep 2022 12:13:14 -0400 Subject: Add Sender support --- webAO/packets/handlers/handleSI.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webAO/packets/handlers/handleSI.ts') diff --git a/webAO/packets/handlers/handleSI.ts b/webAO/packets/handlers/handleSI.ts index e040c83..b32fbc1 100644 --- a/webAO/packets/handlers/handleSI.ts +++ b/webAO/packets/handlers/handleSI.ts @@ -34,8 +34,8 @@ export const handleSI = (args: string[]) => { // this is determined at the top of this file if (!oldLoading && extrafeatures.includes("fastloading")) { - client.sendServer("RC#%"); + client.sender.sendServer("RC#%"); } else { - client.sendServer("askchar2#%"); + client.sender.sendServer("askchar2#%"); } } \ No newline at end of file -- cgit