made minimum speed larger

This commit is contained in:
lengstrom 2014-07-27 21:28:56 -04:00
parent 7ca42b1a6d
commit ec697e3c46

View file

@ -1,8 +1,8 @@
function blockDestroyed() { function blockDestroyed() {
if (waveone.nextGen > 1000) { if (waveone.nextGen > 1350) {
waveone.nextGen -= 25 * settings.creationSpeedModifier; waveone.nextGen -= 25 * settings.creationSpeedModifier;
} else { } else {
waveone.nextGen = 1000; waveone.nextGen = 1350;
} }
if (waveone.difficulty < 15) { if (waveone.difficulty < 15) {
@ -27,9 +27,9 @@ function waveGen(hex) {
this.dt += 16.6666667; this.dt += 16.6666667;
this.computeDifficulty(); this.computeDifficulty();
if ((this.dt - this.lastGen)*settings.creationSpeedModifier > this.nextGen) { if ((this.dt - this.lastGen)*settings.creationSpeedModifier > this.nextGen) {
if (this.nextGen > 1000) { if (this.nextGen > 1350) {
this.nextGen -= 10 * ((this.nextGen/1300)) * settings.creationSpeedModifier; this.nextGen -= 10 * ((this.nextGen/1300)) * settings.creationSpeedModifier;
} }
} }
}; };