1
0
mirror of synced 2024-11-12 01:10:47 +01:00

Update game.ts

This commit is contained in:
ghkkk090 2022-08-08 09:47:19 +07:00 committed by GitHub
parent b0f697471d
commit fd51a92f08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -372,7 +372,7 @@ export default class GameModule extends Module {
saveExCrown.path = body.rgResult?.path!; saveExCrown.path = body.rgResult?.path!;
} }
if(body?.playedAt !== null || body?.playedAt !== undefined){ if(body?.playedAt !== null || body?.playedAt !== undefined){
body!.playedAt = body?.playedAt!; saveExCrown.playedAt = body?.playedAt!;
} }
saveExCrown.tunePower = body.car!.tunePower!; saveExCrown.tunePower = body.car!.tunePower!;
saveExCrown.tuneHandling = body.car!.tuneHandling!; saveExCrown.tuneHandling = body.car!.tuneHandling!;
@ -946,7 +946,8 @@ export default class GameModule extends Module {
}, },
data: { data: {
ramp: saveEx.ramp, ramp: saveEx.ramp,
path: saveEx.path path: saveEx.path,
playedAt: saveEx.playedAt
} }
}); });
} }