mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
BUGFIX: Go history page shows favor bonus instead of reputation bonus (#2251)
This commit is contained in:
@@ -115,16 +115,17 @@ export const GoHistoryPage = (): React.ReactElement => {
|
|||||||
<Tooltip
|
<Tooltip
|
||||||
title={
|
title={
|
||||||
<>
|
<>
|
||||||
Two wins in a row against an opponent will give you {getMaxRep() / 200} rep converted to favor
|
Two wins in a row against an opponent will give you {getMaxRep() / 200} reputation converted to
|
||||||
with that faction (up to a max of {getMaxRep()} favor), if you are a member of that faction.
|
favor with that faction (up to a max of {getMaxRep()} reputation), if you are a member of that
|
||||||
|
faction.
|
||||||
<br />
|
<br />
|
||||||
The rep is immediately applied as favor, meaning it will increase reputation gain right away
|
The reputation is immediately applied as favor, meaning it will increase reputation gain right
|
||||||
without needing an install.
|
away without needing an install.
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
<TableRow>
|
<TableRow>
|
||||||
<TableCell className={classes.cellNone}>Favor from winstreaks:</TableCell>
|
<TableCell className={classes.cellNone}>Reputation from winstreaks:</TableCell>
|
||||||
<TableCell className={classes.cellNone}>
|
<TableCell className={classes.cellNone}>
|
||||||
{data.rep ?? 0} {data.rep === getMaxRep() ? "(max)" : ""}
|
{data.rep ?? 0} {data.rep === getMaxRep() ? "(max)" : ""}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
|||||||
Reference in New Issue
Block a user