From d8ec459b97db4e2df95966062d9aa7dd7b54a86c Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Wed, 27 Jul 2011 00:31:52 +1200 Subject: [PATCH] Declare RenderSimple dep in WithFire --- OpenRA.Mods.Cnc/WithFire.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Cnc/WithFire.cs b/OpenRA.Mods.Cnc/WithFire.cs index 7a3df42e72..c6d4408284 100644 --- a/OpenRA.Mods.Cnc/WithFire.cs +++ b/OpenRA.Mods.Cnc/WithFire.cs @@ -13,7 +13,7 @@ using OpenRA.Traits; namespace OpenRA.Mods.Cnc { - class WithFireInfo : ITraitInfo + class WithFireInfo : ITraitInfo, Requires { public object Create(ActorInitializer init) { return new WithFire(init.self); } }