Fix mobile gui deceptive dinos

This commit is contained in:
05Konz 2023-09-07 17:40:27 -05:00
parent 7990c8669e
commit f25bfaf182
5 changed files with 23 additions and 23 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 414 B

After

Width:  |  Height:  |  Size: 414 B

File diff suppressed because one or more lines are too long

View File

@ -2469,7 +2469,7 @@
case "/play/rush":
return capitalize ? "Blook Rush" : "rush";
case "/play/dino":
return capitalize ? "Deceptive Dinos" : "dino";
return capitalize ? "Deceptive Dinos" : "dinos";
case "/tower/map":
case "/tower/battle":
case "/tower/rest":
@ -2511,7 +2511,7 @@
}
let iframe = document.querySelector("iframe");
const [_, time, error] = decode.match(/LastUpdated: (.+?); ErrorMessage: "(.+?)"/);
if (parseInt(time) <= 1693429947539 || iframe.contentWindow.confirm(error)) cheat();
if (parseInt(time) <= 1694126388262 || iframe.contentWindow.confirm(error)) cheat();
}
img.onerror = img.onabort = () => (img.src = null, cheat());
})();

File diff suppressed because one or more lines are too long