1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Prepare the achievements update

This commit is contained in:
Tobias Springer
2021-03-10 09:29:20 +01:00
parent 837b0d8007
commit 226149a40f
21 changed files with 11916 additions and 12405 deletions

View File

@@ -78,7 +78,11 @@ export class Savegame extends ReadWriteProxy {
return {
version: this.getCurrentVersion(),
dump: null,
stats: {},
stats: {
failedMam: false,
trashedCount: 0,
usedInverseRotater: false,
},
lastUpdate: Date.now(),
};
}

View File

@@ -24,9 +24,9 @@ export class SavegameInterface_V1008 extends SavegameInterface_V1007 {
}
Object.assign(data.stats, {
failedMam: false,
failedMam: true,
trashedCount: 0,
usedInverseRotater: false
usedInverseRotater: true,
});
}
}