From 3b6ccd7f88f7713d7de6866f44ee982a13d17f5d Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 12 Jan 2010 19:59:55 +1300 Subject: [PATCH] more --- OpenRa.Game/Game.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRa.Game/Game.cs b/OpenRa.Game/Game.cs index 702f24fab4..6de64ed586 100644 --- a/OpenRa.Game/Game.cs +++ b/OpenRa.Game/Game.cs @@ -61,7 +61,7 @@ namespace OpenRa.Game world = new World(); Game.world.ActorAdded += a => { - if (a.Owner != null && a.LegacyInfo != null) + if (a.Owner != null && a.Info.Traits.Contains()) a.Owner.Shroud.Explore(a); };