BLADEBURNER: Always show Black Operations list (#2592)

This commit is contained in:
catloversg
2026-03-25 04:05:51 +07:00
committed by GitHub
parent 2834684170
commit aced392f53

View File

@@ -35,7 +35,8 @@ export function BlackOpPage({ bladeburner }: BlackOpPageProps): React.ReactEleme
losses. Black Ops success significantly affected by combat stats. Many Ops benefit from Hacking skill.
Unaffected by Charisma.
</Typography>
{bladeburner.numBlackOpsComplete >= blackOpsArray.length ? (
{bladeburner.numBlackOpsComplete >= blackOpsArray.length && (
<Button
sx={{ my: 1, p: 1 }}
onClick={() => {
@@ -48,13 +49,11 @@ export function BlackOpPage({ bladeburner }: BlackOpPageProps): React.ReactEleme
>
<CorruptibleText content="Destroy w0r1d_d43m0n" spoiler={false}></CorruptibleText>
</Button>
) : (
<>
{blackOperations.map((blackOperation) => (
<BlackOpElem key={blackOperation.name} bladeburner={bladeburner} action={blackOperation} />
))}
</>
)}
{blackOperations.map((blackOperation) => (
<BlackOpElem key={blackOperation.name} bladeburner={bladeburner} action={blackOperation} />
))}
</>
);
}