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,7 +809,8 @@ export class GameData {
Utils.executeIf(!skipVerification, updateUserInfo).then(success => {
if (success !== null && !success)
return resolve(false);
this.scene.ui.savingIcon.show();
if (sync)
this.scene.ui.savingIcon.show();
const sessionData = this.getSessionSaveData(scene);
const maxIntAttrValue = Math.pow(2, 31);
@ -825,7 +826,8 @@ 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)
.then(response => response.text())
.then(error => {
this.scene.ui.savingIcon.hide();
if (sync)
this.scene.ui.savingIcon.hide();
if (error) {
if (error.startsWith('client version out of date')) {
this.scene.clearPhaseQueue();