Removed a log statement from Netscriopt

This commit is contained in:
Daniel Xie 2017-05-29 17:42:42 -05:00
parent af47baf4fa
commit d8fd1e1164
2 changed files with 0 additions and 2 deletions

@ -107,7 +107,6 @@ PlayerObject.prototype.applyForJob = function(entryPosType) {
}
}
this.companyName = company.companyName;
this.companyPosition = pos;

@ -63,7 +63,6 @@ function evaluate(exp, workerScript) {
p.then(function(expRight) {
try {
env.set(exp.left.value, expRight);
workerScript.scriptRef.log("Variable " + exp.left.value + " set to " + expRight);
} catch (e) {
reject("|" + workerScript.serverIp + "|" + workerScript.name + "|" + e.toString());
}