From ec697e3c4678a1415ff7c62b749c51e3d4059e00 Mon Sep 17 00:00:00 2001 From: lengstrom Date: Sun, 27 Jul 2014 21:28:56 -0400 Subject: [PATCH] made minimum speed larger --- js/wavegen.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/wavegen.js b/js/wavegen.js index 664b811..d13363a 100644 --- a/js/wavegen.js +++ b/js/wavegen.js @@ -1,8 +1,8 @@ function blockDestroyed() { - if (waveone.nextGen > 1000) { + if (waveone.nextGen > 1350) { waveone.nextGen -= 25 * settings.creationSpeedModifier; } else { - waveone.nextGen = 1000; + waveone.nextGen = 1350; } if (waveone.difficulty < 15) { @@ -27,9 +27,9 @@ function waveGen(hex) { this.dt += 16.6666667; this.computeDifficulty(); 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; - } + } } };