mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
implement #1209
This commit is contained in:
parent
e52a2b19e8
commit
8e4e9dabd9
@ -44,8 +44,26 @@ function prestigeAugmentation() {
|
||||
|
||||
initBitNodeMultipliers(Player);
|
||||
|
||||
const megaCorpFactions = [
|
||||
"ECorp",
|
||||
"MegaCorp",
|
||||
"Bachman & Associates",
|
||||
"Blade Industries",
|
||||
"NWO",
|
||||
"Clarke Incorporated",
|
||||
"Omnitek Incorporated",
|
||||
"Four Sigma",
|
||||
"KuaiGong International",
|
||||
"Fulcrum Secret Technologies"];
|
||||
|
||||
let maintainMembership = Player.factions.filter(function (faction) {
|
||||
return megaCorpFactions.includes(faction);
|
||||
});
|
||||
|
||||
Player.prestigeAugmentation();
|
||||
|
||||
Player.factions = Player.factions.concat(maintainMembership);
|
||||
|
||||
// Now actually go to the Terminal Screen (and reset it)
|
||||
var mainMenu = document.getElementById("mainmenu-container");
|
||||
mainMenu.style.visibility = "visible";
|
||||
|
Loading…
Reference in New Issue
Block a user