mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +01:00
commit
89dffa6dfc
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -36,8 +36,14 @@ export function NetscriptExtra(player: IPlayer, workerScript: WorkerScript): INe
|
||||
real_document.completely_unused_field = undefined;
|
||||
},
|
||||
alterReality: function (): void {
|
||||
// eval so the code doesn't get optimized away.
|
||||
const x = eval("false");
|
||||
// We need to trick webpack into not optimizing a variable that is guaranteed to be false (and doesn't use prototypes)
|
||||
let x = false;
|
||||
const recur = function (depth: number): void {
|
||||
if (depth === 0) return;
|
||||
x = !x;
|
||||
recur(depth - 1);
|
||||
};
|
||||
recur(2);
|
||||
console.warn("I am sure that this variable is false.");
|
||||
if (x !== false) {
|
||||
console.warn("Reality has been altered!");
|
||||
|
Loading…
Reference in New Issue
Block a user