Changed version number to v0.35.0. Disabled AST logging for Netscript Worker actions

This commit is contained in:
danielyxie 2018-03-03 15:30:46 -06:00
parent 99d774cf5a
commit bf90b85ae0
3 changed files with 2344 additions and 2344 deletions

4682
dist/bundle.js vendored

File diff suppressed because one or more lines are too long

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