Only show save icon on server sync

pull/841/head
Flashfyre 2024-05-13 18:37:48 -04:00
parent b45cd2f7e7
commit 5d0dbfff98
1 changed files with 4 additions and 2 deletions

View File

@ -809,6 +809,7 @@ export class GameData {
Utils.executeIf(!skipVerification, updateUserInfo).then(success => { Utils.executeIf(!skipVerification, updateUserInfo).then(success => {
if (success !== null && !success) if (success !== null && !success)
return resolve(false); return resolve(false);
if (sync)
this.scene.ui.savingIcon.show(); this.scene.ui.savingIcon.show();
const sessionData = this.getSessionSaveData(scene); const sessionData = this.getSessionSaveData(scene);
@ -825,6 +826,7 @@ export class GameData {
Utils.apiPost('savedata/updateall', JSON.stringify(request, (k: any, v: any) => typeof v === 'bigint' ? v <= maxIntAttrValue ? Number(v) : v.toString() : v), undefined, true) Utils.apiPost('savedata/updateall', JSON.stringify(request, (k: any, v: any) => typeof v === 'bigint' ? v <= maxIntAttrValue ? Number(v) : v.toString() : v), undefined, true)
.then(response => response.text()) .then(response => response.text())
.then(error => { .then(error => {
if (sync)
this.scene.ui.savingIcon.hide(); this.scene.ui.savingIcon.hide();
if (error) { if (error) {
if (error.startsWith('client version out of date')) { if (error.startsWith('client version out of date')) {