From ce708f69ed7878422a6a6371e44faed6857cb79a Mon Sep 17 00:00:00 2001 From: Caleb Date: Sun, 4 Sep 2022 20:22:35 -0400 Subject: Fix AO Host --- webAO/client.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'webAO/client.ts') diff --git a/webAO/client.ts b/webAO/client.ts index 33f1802..5d5eb2c 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -37,10 +37,7 @@ let { ip: serverIP, mode, asset, theme } = queryParser(); const DEFAULT_HOST = "http://attorneyoffline.de/base/"; import { showname_click } from './dom/showNameClick' import { updateActionCommands } from './dom/updateActionCommands' -export let AO_HOST = asset || DEFAULT_HOST; -export const setAOhost = (val: string) => { - AO_HOST = val -} +import { AO_HOST } from './client/aoHost' let THEME: string = theme || "default"; let CHATBOX: string; -- cgit