mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-20 05:05:47 +01:00
hotfix
* Fix ramcost for corporation.bonusTime (must be 0 because other getBonusTime functions exist). * Fix ui hook names for overview.
This commit is contained in:
parent
1670be1573
commit
bb566dc57c
@ -369,7 +369,7 @@ const corporation = {
|
|||||||
issueDividends: RamCostConstants.Corporation,
|
issueDividends: RamCostConstants.Corporation,
|
||||||
buyBackShares: RamCostConstants.Corporation,
|
buyBackShares: RamCostConstants.Corporation,
|
||||||
sellShares: RamCostConstants.Corporation,
|
sellShares: RamCostConstants.Corporation,
|
||||||
getBonusTime: RamCostConstants.Corporation,
|
getBonusTime: 0,
|
||||||
sellMaterial: RamCostConstants.Corporation,
|
sellMaterial: RamCostConstants.Corporation,
|
||||||
sellProduct: RamCostConstants.Corporation,
|
sellProduct: RamCostConstants.Corporation,
|
||||||
discontinueProduct: RamCostConstants.Corporation,
|
discontinueProduct: RamCostConstants.Corporation,
|
||||||
|
@ -148,7 +148,7 @@ export function DataRow({ name, showBar, color, cellType }: DataRowProps): React
|
|||||||
<Val name={name} color={color} />
|
<Val name={name} color={color} />
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell align="right" classes={{ root: classes[cellType] }}>
|
<TableCell align="right" classes={{ root: classes[cellType] }}>
|
||||||
<Typography id={"overview-" + name + "-hook"} color={color}>
|
<Typography id={"overview-" + name.toLowerCase() + "-hook"} color={color}>
|
||||||
{}
|
{}
|
||||||
</Typography>
|
</Typography>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
Loading…
Reference in New Issue
Block a user