Created
June 6, 2022 00:02
-
-
Save maxencefrenette/5041a6f93b58043305a24c01dddff68e to your computer and use it in GitHub Desktop.
Increlution Speedup Hack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Insert this at the start of app/gniller.min.js | |
// This needs to be redone after any update | |
// Known issue: needs a game restart after restarting a new game+ | |
const oldNow = Date.now; | |
const timestamp = Date.now(); | |
Date.now = () => { | |
return timestamp + 1000 * (oldNow.call(Date) - timestamp); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dropping it to 600 seemed to work, anything above and it just reloads.
Thanks for the tip.