mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Fixed incorrect types found in globals
This commit is contained in:
parent
7e606376c5
commit
e7f5d9d0a2
@ -7,9 +7,6 @@ export interface IGlobals {
|
|||||||
LocationInfection: ILocationInfection;
|
LocationInfection: ILocationInfection;
|
||||||
bot_presets: IBotPreset[];
|
bot_presets: IBotPreset[];
|
||||||
AudioSettings: IAudioSettings;
|
AudioSettings: IAudioSettings;
|
||||||
EnvironmentSettings: IEnvironmentSettings;
|
|
||||||
PlayerSettings: IPlayerSettings;
|
|
||||||
RadioBroadcastSettings: IRadioBroadcastSettings;
|
|
||||||
BotWeaponScatterings: IBotWeaponScattering[];
|
BotWeaponScatterings: IBotWeaponScattering[];
|
||||||
ItemPresets: Record<string, IPreset>;
|
ItemPresets: Record<string, IPreset>;
|
||||||
}
|
}
|
||||||
@ -1395,6 +1392,7 @@ export interface IPathConfig {
|
|||||||
once: boolean;
|
once: boolean;
|
||||||
circle: boolean;
|
circle: boolean;
|
||||||
circleCount: number;
|
circleCount: number;
|
||||||
|
skinType: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ISquadSettings {
|
export interface ISquadSettings {
|
||||||
@ -1974,6 +1972,9 @@ export interface IBotPreset {
|
|||||||
|
|
||||||
export interface IAudioSettings {
|
export interface IAudioSettings {
|
||||||
AudioGroupPresets: IAudioGroupPreset[];
|
AudioGroupPresets: IAudioGroupPreset[];
|
||||||
|
EnvironmentSettings: IEnvironmentSettings;
|
||||||
|
PlayerSettings: IPlayerSettings;
|
||||||
|
RadioBroadcastSettings: IRadioBroadcastSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IAudioGroupPreset {
|
export interface IAudioGroupPreset {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user