From 593d913f559b832935c87fe2a4302f8638189c89 Mon Sep 17 00:00:00 2001 From: RoosterDragon Date: Mon, 21 Sep 2015 22:15:36 +0100 Subject: [PATCH] Remove sync on actor - as it doesn't currently work. --- OpenRA.Game/Actor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Game/Actor.cs b/OpenRA.Game/Actor.cs index c7605549bc..e4378cee19 100644 --- a/OpenRA.Game/Actor.cs +++ b/OpenRA.Game/Actor.cs @@ -30,7 +30,7 @@ namespace OpenRA public readonly uint ActorID; - [Sync] public Player Owner { get; set; } + public Player Owner { get; set; } public bool IsInWorld { get; internal set; } public bool Disposed { get; private set; }