From e70d0ff619175be083e913bbf84b96b34a45233b Mon Sep 17 00:00:00 2001 From: iopietro Date: Tue, 22 May 2018 23:50:27 +0200 Subject: [PATCH] A little change +Changed the Automation request timer to one second --- unx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unx.js b/unx.js index b332ba08..cbd2eaca 100644 --- a/unx.js +++ b/unx.js @@ -7,7 +7,7 @@ automation(); function automation() { this.xhttp.open("GET", "GameEngine/Automation.php", true); this.xhttp.send(); - setTimeout(function(){ automation(); }, 1500); + setTimeout(function(){ automation(); }, 1000); } function gb(){return hb('height');} function ib(){return hb('width');}