diff --git a/src/PersonObjects/Player/PlayerObjectGangMethods.ts b/src/PersonObjects/Player/PlayerObjectGangMethods.ts index 02242d5ff..77568ee60 100644 --- a/src/PersonObjects/Player/PlayerObjectGangMethods.ts +++ b/src/PersonObjects/Player/PlayerObjectGangMethods.ts @@ -2,9 +2,7 @@ import { Factions } from "../../Faction/Factions"; import { Faction } from "../../Faction/Faction"; import { Gang } from "../../Gang/Gang"; import { IPlayer } from "../IPlayer"; -import { GangConstants } from "../../Gang/data/Constants" - - +import { GangConstants } from "../../Gang/data/Constants"; export function canAccessGang(this: IPlayer): boolean { if (this.bitNodeN === 2) { diff --git a/src/PersonObjects/Sleeve/Sleeve.ts b/src/PersonObjects/Sleeve/Sleeve.ts index 335abeb5c..e3088fe0f 100644 --- a/src/PersonObjects/Sleeve/Sleeve.ts +++ b/src/PersonObjects/Sleeve/Sleeve.ts @@ -1108,6 +1108,7 @@ export class Sleeve extends Person { break; case "Infiltrate synthoids": time = 60000; + this.currentTaskLocation = "This will generate additional contracts and operations"; break; case "Support main sleeve": p.bladeburner?.sleeveSupport(true); diff --git a/src/PersonObjects/Sleeve/ui/SleeveElem.tsx b/src/PersonObjects/Sleeve/ui/SleeveElem.tsx index 2c5cba2c4..024d14830 100644 --- a/src/PersonObjects/Sleeve/ui/SleeveElem.tsx +++ b/src/PersonObjects/Sleeve/ui/SleeveElem.tsx @@ -114,14 +114,16 @@ export function SleeveElem(props: IProps): React.ReactElement { desc = <>This sleeve is currently working out at {props.sleeve.currentTaskLocation}.; break; case SleeveTaskType.Bladeburner: { - let contract = ""; + let message = ""; if (props.sleeve.bbContract !== "------") { - contract = ` - ${props.sleeve.bbContract} (Success Rate: ${props.sleeve.currentTaskLocation})`; + message = ` - ${props.sleeve.bbContract} (Success Rate: ${props.sleeve.currentTaskLocation})`; + } else if (props.sleeve.currentTaskLocation !== "") { + message = props.sleeve.currentTaskLocation; } desc = ( <> This sleeve is currently attempting to {props.sleeve.bbAction} - {contract} + {message} ); break;