mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-03-21 17:52:30 +01:00
Fix research tree of product industries post-prestige
After destroying a BitNode, the `resetIndustryResearchTrees` reset all industries to the _base_ research tree, leaving the product industries without the `uPgrade` researches in the graph. So corporations started in the next BitNode were unable to expand product capacity. This fixes that reset function to use the correct product industry tree.
This commit is contained in:
@ -227,13 +227,13 @@ export function resetIndustryResearchTrees(): void {
|
|||||||
IndustryResearchTrees.Agriculture = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Agriculture = getBaseResearchTreeCopy();
|
||||||
IndustryResearchTrees.Fishing = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Fishing = getBaseResearchTreeCopy();
|
||||||
IndustryResearchTrees.Mining = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Mining = getBaseResearchTreeCopy();
|
||||||
IndustryResearchTrees.Food = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Food = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.Tobacco = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Tobacco = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.Chemical = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Chemical = getBaseResearchTreeCopy();
|
||||||
IndustryResearchTrees.Pharmaceutical = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Pharmaceutical = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.Computer = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Computer = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.Robotics = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Robotics = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.Software = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Software = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.Healthcare = getBaseResearchTreeCopy();
|
IndustryResearchTrees.Healthcare = getProductIndustryResearchTreeCopy();
|
||||||
IndustryResearchTrees.RealEstate = getBaseResearchTreeCopy();
|
IndustryResearchTrees.RealEstate = getProductIndustryResearchTreeCopy();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user