diff --git a/project/src/helpers/WeatherHelper.ts b/project/src/helpers/WeatherHelper.ts index 10d008b1..4f3f1d01 100644 --- a/project/src/helpers/WeatherHelper.ts +++ b/project/src/helpers/WeatherHelper.ts @@ -25,7 +25,7 @@ export class WeatherHelper { */ public getInRaidTime(timestamp?: number): Date { // tarkov time = (real time * 7 % 24 hr) + 3 hour - const russiaOffsetMilliseconds = this.timeUtil.getHoursAsSeconds(2) * 1000; + const russiaOffsetMilliseconds = this.timeUtil.getHoursAsSeconds(3) * 1000; const twentyFourHoursMilliseconds = this.timeUtil.getHoursAsSeconds(24) * 1000; const currentTimestampMilliSeconds = timestamp ? timestamp : new Date().getTime();