Playtesting - Rebalancing

This commit is contained in:
Daniel Xie
2017-04-22 21:32:51 -05:00
parent c69d6ce538
commit d6c094f4de
6 changed files with 80 additions and 79 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 * .25;
this.ramUsage = this.numInstructions * 0.5;
}
Script.prototype.log = function(txt) {