From 5617465294fe4765a5c509583df4b1c7154eaca5 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 4 Dec 2010 11:14:40 +1300 Subject: [PATCH] remove sync attribute from DisplayCash/DisplayOre --- OpenRA.Game/Traits/Player/PlayerResources.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/OpenRA.Game/Traits/Player/PlayerResources.cs b/OpenRA.Game/Traits/Player/PlayerResources.cs index 46127cc632..5faface182 100644 --- a/OpenRA.Game/Traits/Player/PlayerResources.cs +++ b/OpenRA.Game/Traits/Player/PlayerResources.cs @@ -36,14 +36,13 @@ namespace OpenRA.Traits [Sync] public int Cash; - [Sync] - public int DisplayCash; [Sync] public int Ore; [Sync] public int OreCapacity; - [Sync] + + public int DisplayCash; public int DisplayOre; public float GetSiloFullness() { return (float)Ore / OreCapacity; }