added effects of creationSpeedModifier
This commit is contained in:
parent
eae6eb5b82
commit
f9ff5b4cea
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ function waveGen(hex) {
|
|||
this.currentFunction();
|
||||
this.dt += 16.6666667;
|
||||
this.computeDifficulty();
|
||||
if ((this.dt - this.lastGen) > this.nextGen) {
|
||||
if ((this.dt - this.lastGen)*settings.creationSpeedModifier > this.nextGen) {
|
||||
if (this.nextGen > 1000) {
|
||||
this.nextGen -= 4.5 * ((this.nextGen/1300)) * settings.creationSpeedModifier;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue