This commit is contained in:
Olivier Gagnon 2021-12-20 15:59:46 -05:00
parent 41a7109baa
commit b57ac45698
2 changed files with 4 additions and 1 deletions

@ -297,7 +297,7 @@ const achievements: Achievement[] = [
Condition: () =>
Player.bitNodeN === 1 &&
bitNodeFinishedState() &&
Player.getHomeComputer().maxRam <= 32 &&
Player.getHomeComputer().maxRam <= 128 &&
Player.getHomeComputer().cpuCores === 1,
},
{

@ -4821,6 +4821,9 @@ export interface NS extends Singularity {
* Get general info about a running script.
* @remarks
* RAM cost: 0.3 GB
*
* Running with no args returns curent script.
*
* @returns info about a running script
*/
getRunningScript(filename: string | number, hostname: string, ...args: (string | number)[]): RunningScript;