From 513b852a6742731749ac8d634869f0fa69fb445b Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Mon, 11 Jul 2011 10:07:24 +1200 Subject: [PATCH] fix [Sync] being allowed in places that don't make sense --- OpenRA.Game/Sync.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Game/Sync.cs b/OpenRA.Game/Sync.cs index 4f0bb8a287..b245898c81 100755 --- a/OpenRA.Game/Sync.cs +++ b/OpenRA.Game/Sync.cs @@ -16,6 +16,7 @@ using OpenRA.FileFormats; namespace OpenRA { + [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public class SyncAttribute : Attribute { } public interface ISync { } /* marker interface */