mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Addressed build failures by initializing an array properly as '[]' instead of 'undefined,' (!185)
Co-authored-by: Mihai <mihai@something.com> Reviewed-on: SPT-AKI/Server#185 Co-authored-by: Mihai <mihai@noreply.dev.sp-tarkov.com> Co-committed-by: Mihai <mihai@noreply.dev.sp-tarkov.com>
This commit is contained in:
parent
b9c82dbb4d
commit
3c32c8cc67
@ -31,7 +31,7 @@ export class SeasonalEventService
|
||||
protected christmasEventActive: boolean = undefined;
|
||||
|
||||
/** All events active at this point in time */
|
||||
protected currentlyActiveEvents: SeasonalEventType[] = undefined;
|
||||
protected currentlyActiveEvents: SeasonalEventType[] = [];
|
||||
|
||||
constructor(
|
||||
@inject("WinstonLogger") protected logger: ILogger,
|
||||
|
Loading…
x
Reference in New Issue
Block a user