From e32e060d379fbde3d0438f1be2f586113291a515 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Tue, 2 Nov 2010 13:36:18 +1300 Subject: [PATCH] (gecko) make production queue content accessible to mod code --- OpenRA.Mods.RA/Player/ProductionQueue.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Player/ProductionQueue.cs b/OpenRA.Mods.RA/Player/ProductionQueue.cs index 3d67be8e9e..0c2f04fa55 100755 --- a/OpenRA.Mods.RA/Player/ProductionQueue.cs +++ b/OpenRA.Mods.RA/Player/ProductionQueue.cs @@ -32,10 +32,10 @@ namespace OpenRA.Mods.RA // TODO: sync these // A list of things we are currently building - List Queue = new List(); + public List Queue = new List(); // A list of things we could possibly build, even if our race doesn't normally get it - Dictionary Produceable = new Dictionary(); + public Dictionary Produceable = new Dictionary(); public ProductionQueue( Actor self, Actor playerActor, ProductionQueueInfo info ) {