mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Improved seasonal event setting typing
This commit is contained in:
parent
545707d0bb
commit
89b4620b25
@ -28,11 +28,14 @@ export interface ISeasonalEvent {
|
|||||||
startMonth: number;
|
startMonth: number;
|
||||||
endDay: number;
|
endDay: number;
|
||||||
endMonth: number;
|
endMonth: number;
|
||||||
settings?: Record<string, any>;
|
settings?: Record<string, ISeasonalEventSettings>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IZombieSettings {
|
export interface ISeasonalEventSettings {
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface IZombieSettings extends ISeasonalEventSettings {
|
||||||
mapInfectionAmount: Record<string, number>;
|
mapInfectionAmount: Record<string, number>;
|
||||||
disableBosses: string[];
|
disableBosses: string[];
|
||||||
disableWaves: string[];
|
disableWaves: string[];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user