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 ) {