From f0823302db42a6162c9256df3bbf8d1594881da3 Mon Sep 17 00:00:00 2001 From: Bronley Plumb Date: Thu, 7 Dec 2023 10:42:33 -0500 Subject: [PATCH] Update src/SceneGraphDebugCommandController.ts --- src/SceneGraphDebugCommandController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SceneGraphDebugCommandController.ts b/src/SceneGraphDebugCommandController.ts index de97750a..c1b77141 100644 --- a/src/SceneGraphDebugCommandController.ts +++ b/src/SceneGraphDebugCommandController.ts @@ -5,7 +5,7 @@ const Telnet = require('telnet-client'); export class SceneGraphDebugCommandController { constructor(public host: string, port?: number) { - this.port = port ?? 8080; + this.port = port ?? 8080; } private connection: typeof Telnet;