Add back CLIENT_START_TIMESTAMP saving on game start

This commit is contained in:
Dev 2024-01-23 10:14:37 +00:00
parent 1c6b76163b
commit 6378ac6f87

View File

@ -100,6 +100,9 @@ export class GameController
*/ */
public gameStart(_url: string, _info: IEmptyRequestData, sessionID: string, startTimeStampMS: number): void public gameStart(_url: string, _info: IEmptyRequestData, sessionID: string, startTimeStampMS: number): void
{ {
// Store client start time in app context
this.applicationContext.addValue(ContextVariableType.CLIENT_START_TIMESTAMP, startTimeStampMS);
if (this.coreConfig.fixes.fixShotgunDispersion) if (this.coreConfig.fixes.fixShotgunDispersion)
{ {
this.fixShotgunDispersions(); this.fixShotgunDispersions();