1
0
Fork 0
mirror of https://github.com/Luzifer/automate-cookie-clicker.git synced 2024-11-08 14:00:12 +00:00

Fix: Number contains words, only check for zero

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2018-02-12 20:27:32 +01:00
parent d9877b6413
commit f489079569
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -1,7 +1,7 @@
// ==UserScript==
// @name Automate CookieClicker
// @namespace https://luzifer.io/
// @version 0.5.0
// @version 0.5.1
// @description Automate everything!
// @author Knut Ahlers <knut@ahlers.me>
// @match http://orteil.dashnet.org/cookieclicker/
@ -42,9 +42,11 @@ function autoPurchaseUpgrades() {
function checkCPS() {
let cps = parseInt($('#cookies').children('div').text().split(': ')[1]);
if (cps < 3000 && window.autoClicker == undefined) {
if (cps == 0) {
if (window.autoClicker == undefined) {
window.autoClicker = window.setInterval(autoClick, 1);
} else {
}
} else if (cps > 3000) {
if (window.autoClicker != undefined) {
window.clearInterval(window.autoClicker);
window.autoClicker = undefined;