This commit is contained in:
Evert Prants 2022-04-09 22:44:00 +03:00
parent 627aea1cb0
commit 4a2b79d4d0
Signed by: evert
GPG Key ID: 1688DA83D222D0B5
1 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,9 @@ export class Game {
this.videoTest.initialize();
this.videoTest.mesh.position.set(0, 6, -20);
this.renderer.scene.add(this.videoTest.mesh);
this.party = localStorage.getItem('party')?.split('|') || [];
this.party = (localStorage.getItem('party')?.split('|') || []).filter(
(item) => item,
);
// end of
this.chat.registerSendFunction((message) => {