Skip to content
Snippets Groups Projects
Commit bc1b3557 authored by auxhonater's avatar auxhonater
Browse files

Fix ironman autosaves

Fixes broken change in 0b643b5d
Fixes #174
parent 72a69d73
No related branches found
No related tags found
2 merge requests!2332Can someone delete.,!2309Fix ironman autosaves
......@@ -325,7 +325,7 @@ var IronMan = (Save => {
}
function scheduledSaves() {
const date = new Date(Time.date);
const date = new Date(Time.month + " " + Time.monthDay + ", " + Time.year);
if (!V.ironmanautosaveschedule) V.ironmanautosaveschedule = date.getTime().toString(8);
if (parseInt(V.ironmanautosaveschedule, 8) < date.getTime()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment