Updated Interactive Tutorial and added a few helpful links to the hackers-starting-handbook Literature file

This commit is contained in:
danielyxie
2018-08-29 14:06:21 -05:00
parent 4749149dec
commit 8b99e46d5e
7 changed files with 292 additions and 409 deletions
+2
View File
@@ -566,6 +566,8 @@ PlayerObject.prototype.analyze = function() {
PlayerObject.prototype.hasProgram = function(programName) {
var home = Player.getHomeComputer();
if (home == null) {return false;}
for (var i = 0; i < home.programs.length; ++i) {
if (programName.toLowerCase() == home.programs[i].toLowerCase()) {return true;}
}