mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
moved all tor-html related code to one place, hurray for decoupling
This commit is contained in:
parent
18d4e2bd2a
commit
9dc96c51cb
@ -280,7 +280,11 @@ function displayLocationContent() {
|
|||||||
purchase512gb.innerHTML = "Purchase 512GB Server - $" + formatNumber(512*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
purchase512gb.innerHTML = "Purchase 512GB Server - $" + formatNumber(512*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
||||||
purchase1tb.innerHTML = "Purchase 1TB Server - $" + formatNumber(1024*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
purchase1tb.innerHTML = "Purchase 1TB Server - $" + formatNumber(1024*CONSTANTS.BaseCostFor1GBOfRamServer, 2);
|
||||||
if (!SpecialServerIps.hasOwnProperty("Darkweb Server")) {
|
if (!SpecialServerIps.hasOwnProperty("Darkweb Server")) {
|
||||||
|
purchaseTor.setAttribute("class", "a-link-button");
|
||||||
purchaseTor.innerHTML = "Purchase TOR Router - $" + formatNumber(CONSTANTS.TorRouterCost, 2);
|
purchaseTor.innerHTML = "Purchase TOR Router - $" + formatNumber(CONSTANTS.TorRouterCost, 2);
|
||||||
|
} else {
|
||||||
|
purchaseTor.setAttribute("class", "a-link-button-bought");
|
||||||
|
purchaseTor.innerHTML = "TOR Router - Purchased";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -191,9 +191,6 @@ function prestigeSourceFile() {
|
|||||||
}
|
}
|
||||||
homeComp.cpuCores = 1;
|
homeComp.cpuCores = 1;
|
||||||
|
|
||||||
//Darkweb is purchase-able
|
|
||||||
document.getElementById("location-purchase-tor").setAttribute("class", "a-link-button");
|
|
||||||
|
|
||||||
//Reset favor for Companies
|
//Reset favor for Companies
|
||||||
for (var member in Companies) {
|
for (var member in Companies) {
|
||||||
if (Companies.hasOwnProperty(member)) {
|
if (Companies.hasOwnProperty(member)) {
|
||||||
|
@ -1726,13 +1726,6 @@ let Engine = {
|
|||||||
Player.sourceFiles[sfIndex].lvl=sfLvl;
|
Player.sourceFiles[sfIndex].lvl=sfLvl;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
//If DarkWeb already purchased, disable the button
|
|
||||||
if (SpecialServerIps.hasOwnProperty("Darkweb Server")) {
|
|
||||||
const purchaseTor = document.getElementById("location-purchase-tor");
|
|
||||||
purchaseTor.setAttribute("class", "a-link-button-bought");
|
|
||||||
purchaseTor.innerHTML = "TOR Router - Purchased";
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/* Initialization */
|
/* Initialization */
|
||||||
|
Loading…
Reference in New Issue
Block a user