# HG changeset patch # User Jason Maltzen # Date 2015-12-27 09:42:27 # Node ID 3e36d49355f509225697819cc0713ecfa876f481 # Parent 237225d09aaa542eb8e52b70d9e1a7457d95ca32 Re-enable multiple worker threads. diff --git a/RecipeGenerator.cs b/RecipeGenerator.cs --- a/RecipeGenerator.cs +++ b/RecipeGenerator.cs @@ -263,7 +263,7 @@ namespace DesertPaintLab } runningThreads = 0; // presumably! - int threadCount = 1; // Math.Min(costSortedReagents.Count, searchQueue.Count); + int threadCount = Math.Min(costSortedReagents.Count, searchQueue.Count); if (threadCount == 0) { if (Finished != null)