diff --git a/src/client/view/GameView.ts b/src/client/view/GameView.ts index 92a62538d..2103db2f6 100644 --- a/src/client/view/GameView.ts +++ b/src/client/view/GameView.ts @@ -534,7 +534,9 @@ export class GameView implements GameMap { reachedTarget: u.reachedTarget, }); } + const myID = this._myPlayer?.id(); for (const c of gu.updates[GameUpdateType.ConquestEvent] ?? []) { + if (c.conquerorId !== myID) continue; const conquered = this._players.get(c.conqueredId); if (conquered === undefined) continue; const loc = conquered.nameLocation();