made minimum speed larger
This commit is contained in:
parent
7ca42b1a6d
commit
ec697e3c46
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue