mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-17 13:00:07 +02:00
MISC: Clarify conditions of activating Gang, Bladeburner, Stanek's Gift (#2053)
This commit is contained in:
@@ -37,10 +37,11 @@ export function GangButton({ faction }: IProps): React.ReactElement {
|
||||
description: "Manage a gang for this Faction. Gangs will earn you money and faction reputation",
|
||||
};
|
||||
} else {
|
||||
const checkResult = Player.canAccessGang();
|
||||
data = {
|
||||
enabled: Player.canAccessGang(),
|
||||
enabled: checkResult.success,
|
||||
title: "Create Gang",
|
||||
tooltip: !Player.canAccessGang() ? (
|
||||
tooltip: !checkResult.success ? (
|
||||
<Typography>Unlocked when reaching {GangConstants.GangKarmaRequirement} karma</Typography>
|
||||
) : (
|
||||
""
|
||||
|
||||
Reference in New Issue
Block a user