From 0d555f93478aa7076d19f6dc7fe455239b961c28 Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Sun, 5 Jan 2025 07:53:43 +0700 Subject: [PATCH] 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 --- src/Faction/ui/Info.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Faction/ui/Info.tsx b/src/Faction/ui/Info.tsx index e69a8247c..de9dad0f5 100644 --- a/src/Faction/ui/Info.tsx +++ b/src/Faction/ui/Info.tsx @@ -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 ( - 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.  + {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. );