mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-02-17 02:22:23 +01:00
Merge pull request #1097 from Snarling/patch-2
Fix joining blade via ns
This commit is contained in:
@ -4065,7 +4065,7 @@ function NetscriptFunctions(workerScript) {
|
|||||||
return true; // Already member
|
return true; // Already member
|
||||||
} else if (Player.strength >= 100 && Player.defense >= 100 &&
|
} else if (Player.strength >= 100 && Player.defense >= 100 &&
|
||||||
Player.dexterity >= 100 && Player.agility >= 100) {
|
Player.dexterity >= 100 && Player.agility >= 100) {
|
||||||
Player.bladeburner = new Bladeburner();
|
Player.bladeburner = new Bladeburner(Player);
|
||||||
workerScript.log("joinBladeburnerDivision", "You have been accepted into the Bladeburner division");
|
workerScript.log("joinBladeburnerDivision", "You have been accepted into the Bladeburner division");
|
||||||
|
|
||||||
const worldHeader = document.getElementById("world-menu-header");
|
const worldHeader = document.getElementById("world-menu-header");
|
||||||
@ -4546,4 +4546,4 @@ function NetscriptFunctions(workerScript) {
|
|||||||
return functions;
|
return functions;
|
||||||
} // End NetscriptFunction()
|
} // End NetscriptFunction()
|
||||||
|
|
||||||
export { NetscriptFunctions };
|
export { NetscriptFunctions };
|
||||||
|
Reference in New Issue
Block a user