diff --git a/src/Faction/ui/Info.tsx b/src/Faction/ui/Info.tsx index d579efcba..f3bbaaa5e 100644 --- a/src/Faction/ui/Info.tsx +++ b/src/Faction/ui/Info.tsx @@ -42,7 +42,7 @@ export class Info extends React.Component { getFavorGainContent(): JSX.Element { const favorGain = this.props.faction.getFavorGain()[0]; return (<> - You will earn {Favor(favorGain)} faction favor upon resetting after installing an Augmentation + You will have {Favor(this.props.faction.favor+favorGain)} faction favor after installing an Augmentation. ); @@ -56,8 +56,9 @@ export class Info extends React.Component { const favorTooltip = <> Faction favor increases the rate at which you earn reputation for this faction by 1% per favor. Faction favor is gained whenever you - reset after installing an Augmentation. The amount of - favor you gain depends on how much reputation you have with the faction + install an Augmentation. The amount of + favor you gain depends on the total amount of reputation you earned with this faction. + Across all resets. ; diff --git a/src/ui/React/AutoupdatingParagraph.tsx b/src/ui/React/AutoupdatingParagraph.tsx index 9fc9d747e..5fd435932 100644 --- a/src/ui/React/AutoupdatingParagraph.tsx +++ b/src/ui/React/AutoupdatingParagraph.tsx @@ -58,13 +58,13 @@ export class AutoupdatingParagraph extends React.Component { render(): React.ReactNode { return ( -

- {this.props.getContent()} +

+

{this.props.getContent()}

{ this.hasTooltip() && {this.tooltip()} } -

+
) } }