From 705bb39fbe20c2b17788b4f2ab859674edc02de6 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 31 Aug 2024 15:14:48 +0200 Subject: hide out of area players --- webAO/client.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'webAO/client.ts') diff --git a/webAO/client.ts b/webAO/client.ts index ebfb36f..301fdfa 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -124,6 +124,7 @@ class Client extends EventEmitter { chars: any; emotes: any; evidences: any; + area: number; areas: any; musics: any; musics_time: boolean; @@ -183,6 +184,7 @@ class Client extends EventEmitter { this.chars = []; this.emotes = []; this.evidences = []; + this.area = 0; this.areas = []; this.musics = []; this.musics_time = false; -- cgit