Playtesting - Fixed bugs

This commit is contained in:
Daniel Xie
2017-04-19 14:19:33 -05:00
parent 650bdf1f3f
commit 9b408cb995
23 changed files with 286 additions and 191 deletions
+1 -1
View File
@@ -123,7 +123,7 @@ Script.prototype.updateNumInstructions = function() {
//Ideally, I would want it to be based on type of instructions as well
// (e.g. hack() costs a lot but others dont)
Script.prototype.updateRamUsage = function() {
this.ramUsage = this.numInstructions * .2;
this.ramUsage = this.numInstructions * .25;
}
Script.prototype.log = function(txt) {