mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
Fix infiltrations only using wirecutting game
This commit is contained in:
parent
69781359d5
commit
b076a6489a
@ -113,16 +113,7 @@ export function Game(props: IProps): React.ReactElement {
|
|||||||
stageComponent = <Countdown onFinish={() => setStage(Stage.Minigame)} />;
|
stageComponent = <Countdown onFinish={() => setStage(Stage.Minigame)} />;
|
||||||
break;
|
break;
|
||||||
case Stage.Minigame: {
|
case Stage.Minigame: {
|
||||||
/**
|
const MiniGame = minigames[gameIds.id];
|
||||||
*
|
|
||||||
BackwardGame,
|
|
||||||
BribeGame,
|
|
||||||
CheatCodeGame,
|
|
||||||
Cyberpunk2077Game,
|
|
||||||
MinesweeperGame,
|
|
||||||
WireCuttingGame,
|
|
||||||
*/
|
|
||||||
const MiniGame = WireCuttingGame; // minigames[gameIds.id];
|
|
||||||
stageComponent = <MiniGame onSuccess={success} onFailure={failure} difficulty={props.Difficulty + level / 50} />;
|
stageComponent = <MiniGame onSuccess={success} onFailure={failure} difficulty={props.Difficulty + level / 50} />;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user