diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-05-22 13:17:28 +0200 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2022-05-22 13:17:28 +0200 |
| commit | e1cf45fa8ace00ef400235e09aca418d5094fc57 (patch) | |
| tree | a54efae648dc0c27bcbc51b13ea59fa31fc415ac /webAO/client.ts | |
| parent | e723dd8bf73101e79ec24bc72fe9bdb8c9dd286f (diff) | |
reversed logic with chatboxes
Diffstat (limited to 'webAO/client.ts')
| -rw-r--r-- | webAO/client.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/client.ts b/webAO/client.ts index e9c413f..9821ba0 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -985,7 +985,7 @@ class Client extends EventEmitter { blips: safeTags(cini.options.blips).toLowerCase(), gender: safeTags(cini.options.gender).toLowerCase(), side: safeTags(cini.options.side).toLowerCase(), - chat: (cini.options.chat === '') ? safeTags(cini.options.chat).toLowerCase() : safeTags(cini.options.category).toLowerCase(), + chat: (cini.options.chat === '' ) ? safeTags(cini.options.category).toLowerCase() : safeTags(cini.options.chat).toLowerCase(), evidence: chargs[3], icon: img.src, inifile: cini, |
