From f9febe7dce233d4a92a0dbf2feb93329c3d8b691 Mon Sep 17 00:00:00 2001 From: meadowstream Date: Sat, 31 May 2014 21:56:52 -0400 Subject: [PATCH] raised difficulty --- js/wavegen.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/wavegen.js b/js/wavegen.js index dc4ebed..24c188a 100644 --- a/js/wavegen.js +++ b/js/wavegen.js @@ -1,8 +1,8 @@ function blockDestroyed() { - if (waveone.nextGen > 900) { + if (waveone.nextGen > 1000) { waveone.nextGen -= 5; } else { - waveone.nextGen = 900; + waveone.nextGen = 1000; } if (waveone.difficulty < 15) { @@ -28,8 +28,8 @@ function waveGen(clock) { this.dt += 16.6666667 * spaceModifier; this.computeDifficulty(); if (this.dt - this.lastGen * (1/settings.creationSpeedModifier) > this.nextGen) { - if (this.nextGen > 900) { - this.nextGen -= (1 * (this.nextGen/1300)) * settings.creationSpeedModifier; + if (this.nextGen > 1000) { + this.nextGen -= (.1 * (this.nextGen/1300)) * settings.creationSpeedModifier; } } };