From c3394915900c35570ce5f273482aa4fb8a098491 Mon Sep 17 00:00:00 2001 From: cha0s Date: Thu, 27 Jun 2024 12:03:58 -0500 Subject: [PATCH] fix: slop --- app/ecs/ecs.test.js | 2 -- app/websocket.js | 1 - 2 files changed, 3 deletions(-) diff --git a/app/ecs/ecs.test.js b/app/ecs/ecs.test.js index 1ac7213..e51b03d 100644 --- a/app/ecs/ecs.test.js +++ b/app/ecs/ecs.test.js @@ -253,9 +253,7 @@ test('adds components to and remove components from entities when ticking system }; } tick() { - console.log(ecs.get(1).Foo) this.removeComponents(1, ['Foo']); - console.log(ecs.get(1).Foo) } }, }, diff --git a/app/websocket.js b/app/websocket.js index 9544bac..6ae2d8c 100644 --- a/app/websocket.js +++ b/app/websocket.js @@ -50,7 +50,6 @@ class SocketServer extends Server { } async readAsset(path) { const url = new URL(path, 'https://localhost:3000') - console.log({url}); if ('production' === process.env.NODE_ENV) { url.protocol = 'http:'; }