diff --git a/OpenRA.Game/World.cs b/OpenRA.Game/World.cs index 581d4e1fa2..b0068a4a2b 100644 --- a/OpenRA.Game/World.cs +++ b/OpenRA.Game/World.cs @@ -48,7 +48,8 @@ namespace OpenRA public void SetLocalPlayer(int index) { - localPlayerIndex = index; + if (!(orderManager.Connection is ReplayConnection)) + localPlayerIndex = index; } public readonly Actor WorldActor;