diff --git a/js/data.js b/js/data.js index 13c0a9c..c03f4fd 100644 --- a/js/data.js +++ b/js/data.js @@ -111,6 +111,7 @@ const G = { running: true, startedAt: 0, totalClicks: 0, + totalAutoClicks: 0, tick: 0, saveTimer: 0, secTimer: 0, diff --git a/js/engine.js b/js/engine.js index 583f0e1..361c477 100644 --- a/js/engine.js +++ b/js/engine.js @@ -788,7 +788,7 @@ function autoType() { const amount = getClickPower() * 0.5; // 50% of manual click G.code += amount; G.totalCode += amount; - G.totalClicks++; + G.totalAutoClicks++; // Subtle auto-tick flash on the button const btn = document.querySelector('.main-btn'); if (btn && !G._autoTypeFlashActive) {