MISC: Remove mention of Hacking Mission (#1684)

This commit is contained in:
catloversg 2024-10-07 12:58:24 +07:00 committed by GitHub
parent dad34a09dd
commit 4d60c833cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 7 deletions

@ -21,5 +21,5 @@ True if the player is currently performing an action, false otherwise.
RAM cost: 0.5 GB \* 16/4/1 RAM cost: 0.5 GB \* 16/4/1
Returns a boolean indicating whether or not the player is currently performing an action. These actions include working for a company/faction, studying at a university, working out at a gym, creating a program, committing a crime, or carrying out a Hacking Mission. Returns a boolean indicating whether or not the player is currently performing an action. These actions include working for a company/faction, studying at a university, working out at a gym, creating a program, committing a crime, etc.

@ -1,7 +1,6 @@
/** /**
* React component for a selectable option on the Faction UI. These * React component for a selectable option on the Faction UI. These options including working for the faction,
* options including working for the faction, hacking missions, purchasing * purchasing augmentations, etc.
* augmentations, etc.
*/ */
import * as React from "react"; import * as React from "react";

@ -1898,7 +1898,7 @@ export interface Singularity {
* *
* Returns a boolean indicating whether or not the player is currently performing an * Returns a boolean indicating whether or not the player is currently performing an
* action. These actions include working for a company/faction, studying at a university, * action. These actions include working for a company/faction, studying at a university,
* working out at a gym, creating a program, committing a crime, or carrying out a Hacking Mission. * working out at a gym, creating a program, committing a crime, etc.
* *
* @returns True if the player is currently performing an action, false otherwise. * @returns True if the player is currently performing an action, false otherwise.
*/ */

@ -43,8 +43,7 @@ export abstract class BaseServer implements IServer {
// Coding Contract files on this server // Coding Contract files on this server
contracts: CodingContract[] = []; contracts: CodingContract[] = [];
// How many CPU cores this server has. Maximum of 8. // How many CPU cores this server has.
// Currently, this only affects hacking missions
cpuCores = 1; cpuCores = 1;
// Flag indicating whether the FTP port is open // Flag indicating whether the FTP port is open