From f8a9511a15929e8af6931a059cf7d443e2c46c0f Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 17 Jul 2011 10:32:03 +1200 Subject: [PATCH] have RALint check CrateAction.ExcludedActorTypes --- OpenRA.Mods.RA/CrateAction.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Mods.RA/CrateAction.cs b/OpenRA.Mods.RA/CrateAction.cs index 274372384d..d400cb63b8 100644 --- a/OpenRA.Mods.RA/CrateAction.cs +++ b/OpenRA.Mods.RA/CrateAction.cs @@ -19,6 +19,7 @@ namespace OpenRA.Mods.RA public int SelectionShares = 10; public string Effect = null; public string Notification = null; + [ActorReference] public string[] ExcludedActorTypes = { }; public virtual object Create(ActorInitializer init) { return new CrateAction(init.self, this); }