Updated "next equipment unlock" text for gang equipment (#418)

This commit is contained in:
LiamGeorge1999
2023-03-11 04:51:33 +00:00
committed by GitHub
parent 057aeaea83
commit e84e734171

View File

@@ -41,7 +41,7 @@ function NextReveal(props: INextRevealProps): React.ReactElement {
if (upgrades.length === 0) return <></>;
return (
<Typography>
Next at <Money money={upgrades[0].cost} />
Next at <Money money={gang.getUpgradeCost(upgrades[0])} />
</Typography>
);
}