made game harder

This commit is contained in:
lengstrom 2014-08-23 13:15:54 -04:00
parent 3e77af3fab
commit f0607c7d06
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
js.src = "http://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>

View file

@ -26,7 +26,7 @@ function waveGen(hex) {
this.dt = 0;
this.update = function() {
this.currentFunction();
this.dt = (settings.platform == 'mobile' ? 10.0 : 15) * MainHex.ct;
this.dt = 16.66667 * MainHex.ct;
this.computeDifficulty();
if ((this.dt - this.lastGen) * settings.creationSpeedModifier > this.nextGen) {
if (this.nextGen > 600) {