diff --git a/src/core/game/GameView.ts b/src/core/game/GameView.ts index 2054b2d95..b63a0949d 100644 --- a/src/core/game/GameView.ts +++ b/src/core/game/GameView.ts @@ -551,7 +551,7 @@ export class GameView implements GameMap { focusedPlayer(): PlayerView | null { // TODO: renable when performance issues are fixed. - return null; + return this.myPlayer(); if (userSettings.focusLocked()) return this.myPlayer(); return this._focusedPlayer; }