aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleRD.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/packets/handlers/handleRD.ts')
-rw-r--r--webAO/packets/handlers/handleRD.ts19
1 files changed, 9 insertions, 10 deletions
diff --git a/webAO/packets/handlers/handleRD.ts b/webAO/packets/handlers/handleRD.ts
index dde994c..ee38f38 100644
--- a/webAO/packets/handlers/handleRD.ts
+++ b/webAO/packets/handlers/handleRD.ts
@@ -1,18 +1,17 @@
import { client } from "../../client";
-
/**
* we are asking ourselves what characters there are
* @param {Array} args packet arguments
*/
export const handleRD = (_args: string[]) => {
- client.sender.sendSelf("BN#gs4#%");
- client.sender.sendSelf("DONE#%");
- const ooclog = <HTMLInputElement>document.getElementById("client_ooclog");
- ooclog.value = "";
- ooclog.readOnly = false;
+ client.sender.sendSelf("BN#gs4#%");
+ client.sender.sendSelf("DONE#%");
+ const ooclog = <HTMLInputElement>document.getElementById("client_ooclog");
+ ooclog.value = "";
+ ooclog.readOnly = false;
- document.getElementById("client_oocinput")!.style.display = "none";
- document.getElementById("client_replaycontrols")!.style.display =
- "inline-block";
-} \ No newline at end of file
+ document.getElementById("client_oocinput")!.style.display = "none";
+ document.getElementById("client_replaycontrols")!.style.display =
+ "inline-block";
+};