CORPORATION: Show product production multiplier in research popup (#1919)

This commit is contained in:
catloversg
2025-01-25 00:16:23 +07:00
committed by GitHub
parent 1fa2c55860
commit f0a0d3095e

View File

@@ -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())],