Only show save icon on server sync
parent
b45cd2f7e7
commit
5d0dbfff98
|
@ -809,6 +809,7 @@ export class GameData {
|
|||
Utils.executeIf(!skipVerification, updateUserInfo).then(success => {
|
||||
if (success !== null && !success)
|
||||
return resolve(false);
|
||||
if (sync)
|
||||
this.scene.ui.savingIcon.show();
|
||||
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)
|
||||
.then(response => response.text())
|
||||
.then(error => {
|
||||
if (sync)
|
||||
this.scene.ui.savingIcon.hide();
|
||||
if (error) {
|
||||
if (error.startsWith('client version out of date')) {
|
||||
|
|
Loading…
Reference in New Issue