increased speed on mobile slightly
This commit is contained in:
parent
0d87a5973a
commit
59b918da51
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ function waveGen(hex) {
|
|||
this.dt = 0;
|
||||
this.update = function() {
|
||||
this.currentFunction();
|
||||
this.dt = (settings.platform == 'mobile' ? 12.5 : 16.6667) * MainHex.ct;
|
||||
this.dt = (settings.platform == 'mobile' ? 14 : 16.6667) * MainHex.ct;
|
||||
this.computeDifficulty();
|
||||
if ((this.dt - this.lastGen) * settings.creationSpeedModifier > this.nextGen) {
|
||||
if (this.nextGen > 600) {
|
||||
|
|
Loading…
Reference in a new issue