fix: slop

This commit is contained in:
cha0s 2024-06-27 12:03:58 -05:00
parent f89c94b619
commit c339491590
2 changed files with 0 additions and 3 deletions

View File

@ -253,9 +253,7 @@ test('adds components to and remove components from entities when ticking system
}; };
} }
tick() { tick() {
console.log(ecs.get(1).Foo)
this.removeComponents(1, ['Foo']); this.removeComponents(1, ['Foo']);
console.log(ecs.get(1).Foo)
} }
}, },
}, },

View File

@ -50,7 +50,6 @@ class SocketServer extends Server {
} }
async readAsset(path) { async readAsset(path) {
const url = new URL(path, 'https://localhost:3000') const url = new URL(path, 'https://localhost:3000')
console.log({url});
if ('production' === process.env.NODE_ENV) { if ('production' === process.env.NODE_ENV) {
url.protocol = 'http:'; url.protocol = 'http:';
} }