UI: Remove mention of passive reputation gain when player is in BN2 (#1859)

* UI: Remove mention of passive reputation gain when player is in BN2

* Update based on feedback
This commit is contained in:
catloversg 2025-01-05 07:53:43 +07:00 committed by GitHub
parent 423a6ce110
commit 0d555f9347
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -17,6 +17,7 @@ import Tooltip from "@mui/material/Tooltip";
import Box from "@mui/material/Box";
import { useCycleRerender } from "../../ui/React/hooks";
import { calculateFavorAfterResetting } from "../formulas/favor";
import { knowAboutBitverse } from "../../BitNode/BitNodeUtils";
interface IProps {
faction: Faction;
@ -33,9 +34,11 @@ const useStyles = makeStyles()({
function DefaultAssignment(): React.ReactElement {
return (
<Typography>
Perform work/carry out assignments for your faction to help further its cause! By doing so you will earn
reputation for your faction. You will also gain reputation passively over time, although at a very slow rate.
Earning reputation will allow you to purchase Augmentations through this faction, which are powerful upgrades that
Perform work/carry out assignments for your faction to help further its cause! By doing so, you will earn
reputation for your faction. You will also gain reputation passively over time, although at a very slow
rate.&nbsp;
{knowAboutBitverse() && <>Note that the passive reputation gain is disabled in BitNode 2. </>}
Earning reputation will allow you to purchase augmentations through this faction, which are powerful upgrades that
enhance your abilities.
</Typography>
);