Change default moveLv to 0

This commit is contained in:
Riley Shaw 2014-08-23 18:23:47 -07:00
parent 6aed22ac53
commit 72f6091444
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ var creatureFactory = (function () {
baseCreature.prototype.sustainability = 2;
// used as percentages of maxEnergy
baseCreature.prototype.reproduceLv = 0.70;
baseCreature.prototype.moveLv = 0.20;
baseCreature.prototype.moveLv = 0;
baseCreature.prototype.boundEnergy = function() {
if (this.energy > this.maxEnergy)

2
dist/terra.js vendored
View File

@ -24,7 +24,7 @@ var creatureFactory = (function () {
baseCreature.prototype.sustainability = 2;
// used as percentages of maxEnergy
baseCreature.prototype.reproduceLv = 0.70;
baseCreature.prototype.moveLv = 0.20;
baseCreature.prototype.moveLv = 0;
baseCreature.prototype.boundEnergy = function() {
if (this.energy > this.maxEnergy)

2
dist/terra.min.js vendored

File diff suppressed because one or more lines are too long