Set winterEventEnabled value on start

This commit is contained in:
Dev 2023-12-27 18:55:58 +00:00
parent 083622ce3b
commit 99eaeeb63b
3 changed files with 3 additions and 0 deletions

View File

@ -42,6 +42,7 @@ export class WeatherGenerator
data.date = formattedDate; data.date = formattedDate;
data.time = this.getBsgFormattedInRaidTime(computedDate); data.time = this.getBsgFormattedInRaidTime(computedDate);
data.acceleration = this.weatherConfig.acceleration; data.acceleration = this.weatherConfig.acceleration;
data.winterEventEnabled = false;
return data; return data;
} }

View File

@ -228,6 +228,7 @@ export interface Exit
Chance: number; Chance: number;
Count: number; Count: number;
EntryPoints: string; EntryPoints: string;
EventAvailable: boolean
ExfiltrationTime: number; ExfiltrationTime: number;
ExfiltrationType: string; ExfiltrationType: string;
RequiredSlot?: string; RequiredSlot?: string;

View File

@ -6,6 +6,7 @@ export interface IWeatherData
time: string; time: string;
date: string; date: string;
weather?: IWeather; weather?: IWeather;
winterEventEnabled: boolean
} }
export interface IWeather export interface IWeather