Merge pull request #200 from danielyxie/dev

Changed version number to v0.35.0. Disabled AST logging for Netscript…
This commit is contained in:
danielyxie 2018-03-03 15:32:27 -06:00 committed by GitHub
commit 45d80a6661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2344 additions and 2344 deletions

4684
dist/bundle.js vendored

File diff suppressed because one or more lines are too long

@ -1,5 +1,5 @@
let CONSTANTS = {
Version: "0.34.5",
Version: "0.35.0",
//Max level for any skill, assuming no multipliers. Determined by max numerical value in javascript for experience
//and the skill level formula in Player.js. Note that all this means it that when experience hits MAX_INT, then

@ -89,7 +89,7 @@ function runScriptsLoop() {
if (workerScripts[i].running == false && workerScripts[i].env.stopFlag == false) {
try {
var ast = parse(workerScripts[i].code, {sourceType:"module"});
console.log(ast);
//console.log(ast);
} catch (e) {
console.log("Error parsing script: " + workerScripts[i].name);
dialogBoxCreate("Syntax ERROR in " + workerScripts[i].name + ":<br>" + e);