BUGFIX: Go history page shows favor bonus instead of reputation bonus (#2251)

This commit is contained in:
catloversg
2025-07-20 04:51:07 +07:00
committed by GitHub
parent 581048a757
commit c02e985c07

View File

@@ -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>