diff --git a/front/src/Phaser/Game/GameScene.ts b/front/src/Phaser/Game/GameScene.ts index 28558e18..8d6a691f 100644 --- a/front/src/Phaser/Game/GameScene.ts +++ b/front/src/Phaser/Game/GameScene.ts @@ -644,9 +644,9 @@ export class GameScene extends DirtyScene { for (const [key, videoStream] of peers) { this.volumeStoreUnsubscribes.set(key, videoStream.volumeStore.subscribe((volume) => { if (volume) { - console.log(volume); + console.log(`${key}: ${volume}`); this.MapPlayersByKey.get(key)?.showIconTalk(volume > 5); - this.markDirty(); + this.markDirty(); // should be dirty from animation } })); }