Skip to content

Instantly share code, notes, and snippets.

@maxencefrenette
Created June 6, 2022 00:02
Show Gist options
  • Save maxencefrenette/5041a6f93b58043305a24c01dddff68e to your computer and use it in GitHub Desktop.
Save maxencefrenette/5041a6f93b58043305a24c01dddff68e to your computer and use it in GitHub Desktop.
Increlution Speedup Hack
// 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);
}
@Txupport
Copy link

Dropping it to 600 seemed to work, anything above and it just reloads.
Thanks for the tip.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment