aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleASS.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/packets/handlers/handleASS.ts')
-rw-r--r--webAO/packets/handlers/handleASS.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/webAO/packets/handlers/handleASS.ts b/webAO/packets/handlers/handleASS.ts
index a46d68e..c50443a 100644
--- a/webAO/packets/handlers/handleASS.ts
+++ b/webAO/packets/handlers/handleASS.ts
@@ -1,4 +1,5 @@
import { setAOhost } from "../../client/aoHost";
+import { renderPlayerList } from "../../dom/renderPlayerList";
/**
* new asset url!!
@@ -6,4 +7,5 @@ import { setAOhost } from "../../client/aoHost";
*/
export const handleASS = (args: string[]) => {
if (args[1] !== "None") setAOhost(args[1]);
+ renderPlayerList();
};