This commit is contained in:
Nolshine 2021-09-13 20:39:25 +01:00
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";