mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 06:48:42 +02:00
CORPORATION: Show product production multiplier in research popup (#1919)
This commit is contained in:
@@ -143,7 +143,7 @@ export function ResearchModal(props: IProps): React.ReactElement {
|
||||
return (
|
||||
<Modal open={props.open} onClose={props.onClose}>
|
||||
<Upgrade division={props.industry} n={researchTree.root} />
|
||||
<Typography sx={{ mt: 1 }}>
|
||||
<Typography component="div" sx={{ mt: 1 }}>
|
||||
Research points: {props.industry.researchPoints.toFixed(3)}
|
||||
<br />
|
||||
Multipliers from research:
|
||||
@@ -155,6 +155,7 @@ export function ResearchModal(props: IProps): React.ReactElement {
|
||||
["Employee Efficiency Multiplier:", formatCorpMultiplier(researchTree.getEmployeeEffMultiplier())],
|
||||
["Employee Intelligence Multiplier:", formatCorpMultiplier(researchTree.getEmployeeIntMultiplier())],
|
||||
["Production Multiplier:", formatCorpMultiplier(researchTree.getProductionMultiplier())],
|
||||
["Product Production Multiplier:", formatCorpMultiplier(researchTree.getProductProductionMultiplier())],
|
||||
["Sales Multiplier:", formatCorpMultiplier(researchTree.getSalesMultiplier())],
|
||||
["Scientific Research Multiplier:", formatCorpMultiplier(researchTree.getScientificResearchMultiplier())],
|
||||
["Storage Multiplier:", formatCorpMultiplier(researchTree.getStorageMultiplier())],
|
||||
|
||||
Reference in New Issue
Block a user