From 3bc921a08fc7b3306563e8a86a7efd4db1036995 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Thu, 12 Dec 2024 23:07:35 +0100 Subject: get rid of sageTags in a few places plan is to migrate to createTextNode --- webAO/packets/handlers/handleBB.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'webAO/packets/handlers/handleBB.ts') diff --git a/webAO/packets/handlers/handleBB.ts b/webAO/packets/handlers/handleBB.ts index b2895c8..0e973bc 100644 --- a/webAO/packets/handlers/handleBB.ts +++ b/webAO/packets/handlers/handleBB.ts @@ -1,10 +1,8 @@ -import { safeTags } from "../../encoding"; - /** * Handles the warning packet * on client this spawns a message box you can't close for 2 seconds * @param {Array} args ban reason */ export const handleBB = (args: string[]) => { - alert(safeTags(args[1])); + alert(args[1]); }; -- cgit