diff --git a/css/menupages.css b/css/menupages.css
index 3337b8e2b..2d50a9b2c 100644
--- a/css/menupages.css
+++ b/css/menupages.css
@@ -262,6 +262,10 @@ background-color: #555;
width: 70%;
}
+#create-program-list {
+ width: 70%;
+}
+
.create-program-a-link-button {
text-decoration: none;
background-color: #555;
diff --git a/index.html b/index.html
index 21705c4fa..6100a8e21 100644
--- a/index.html
+++ b/index.html
@@ -420,22 +420,18 @@
relaySMTP.exe
This program opens SMTP ports by redirecting data
-
HTTPWorm.exe
This virus opens up HTTP ports
-
SQLInject.exe
This virus opens SQL ports
-
DeepscanV1.exe
This program allows you to use the scan-analyze command with a depth up to 5
-
DeepscanV2.exe
This program allows you to use the scan-analyze command with a depth up to 10
diff --git a/src/CreateProgram.js b/src/CreateProgram.js
index 141cc5317..e8026f0c6 100644
--- a/src/CreateProgram.js
+++ b/src/CreateProgram.js
@@ -35,42 +35,35 @@ function displayCreateProgramContent() {
if (Player.getHomeComputer().programs.indexOf(Programs.NukeProgram) == -1) {
nukeALink.style.display = "inline-block";
}
-
//BruteSSH
if (Player.getHomeComputer().programs.indexOf(Programs.BruteSSHProgram) == -1 &&
Player.hacking_skill >= 50) {
bruteSshALink.style.display = "inline-block";
}
-
//FTPCrack
if (Player.getHomeComputer().programs.indexOf(Programs.FTPCrackProgram) == -1 &&
Player.hacking_skill >= 100) {
ftpCrackALink.style.display = "inline-block";
}
-
//relaySMTP
if (Player.getHomeComputer().programs.indexOf(Programs.RelaySMTPProgram) == -1 &&
Player.hacking_skill >= 250) {
relaySmtpALink.style.display = "inline-block";
}
-
//HTTPWorm
if (Player.getHomeComputer().programs.indexOf(Programs.HTTPWormProgram) == -1 &&
Player.hacking_skill >= 500) {
httpWormALink.style.display = "inline-block";
}
-
//SQLInject
if (Player.getHomeComputer().programs.indexOf(Programs.SQLInjectProgram) == -1 &&
Player.hacking_skill >= 750) {
sqlInjectALink.style.display = "inline-block";
}
-
//Deepscan V1 and V2
if (!Player.hasProgram(Programs.DeepscanV1) && Player.hacking_skill >= 75) {
deepscanv1ALink.style.display = "inline-block";
}
-
if (!Player.hasProgram(Programs.DeepscanV2) && Player.hacking_skill >= 400) {
deepscanv2ALink.style.display = "inline-block";
}
diff --git a/src/Terminal.js b/src/Terminal.js
index 3ec8065c7..971e58f13 100644
--- a/src/Terminal.js
+++ b/src/Terminal.js
@@ -870,7 +870,6 @@ var Terminal = {
//TODO Using array as stack for now, can make more efficient
post("~~~~~~~~~~ Beginning scan-analyze ~~~~~~~~~~");
post(" ");
- post(" ");
var visited = new AllServersToMoneyMap();
var stack = [];
var depthQueue = [0];