1
0
mirror of synced 2025-01-31 20:15:24 +01:00

Update game.ts

This commit is contained in:
ghkkk090 2022-08-09 08:52:25 +07:00 committed by GitHub
parent c432224d59
commit 6066de3229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2961,7 +2961,14 @@ export default class GameModule extends Module {
playedAt: 'desc'
}
});
playedAt = time!.playedAt - 172800;
if(time!.playedAt !== 0)
{
playedAt = time!.playedAt - 172800;
}
else if(time!.playedAt === 0){
playedAt = 1659805200;
}
ghostTrail = ghost_trails!.trail;
}
else{