From 776fe2f4241a67be354908df546f300f413a7d42 Mon Sep 17 00:00:00 2001 From: Caleb Date: Thu, 8 Sep 2022 22:20:32 -0400 Subject: I'm so sorry --- webAO/dom/onOOCEnter.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'webAO/dom/onOOCEnter.ts') diff --git a/webAO/dom/onOOCEnter.ts b/webAO/dom/onOOCEnter.ts index a6bde4c..d7ec21b 100644 --- a/webAO/dom/onOOCEnter.ts +++ b/webAO/dom/onOOCEnter.ts @@ -4,9 +4,8 @@ import { client } from "../client"; * @param {KeyboardEvent} event */ export function onOOCEnter(event: KeyboardEvent) { - console.log('FUCK') if (event.keyCode === 13) { - client.sendOOC( + client.sender.sendOOC( (document.getElementById("client_oocinputbox")).value ); (document.getElementById("client_oocinputbox")).value = -- cgit