mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 06:10:44 -05:00
Fixed typo
This commit is contained in:
parent
f8e72837b2
commit
580af48b44
@ -75,7 +75,7 @@ export class CustomizationCallbacks {
|
|||||||
request: IEmptyRequestData,
|
request: IEmptyRequestData,
|
||||||
sessionID: string,
|
sessionID: string,
|
||||||
): IGetBodyResponseData<ICustomisationStorage[]> {
|
): IGetBodyResponseData<ICustomisationStorage[]> {
|
||||||
return this.httpResponse.getBody(this.customizationController.getCustomisationStoage(sessionID, request));
|
return this.httpResponse.getBody(this.customizationController.getCustomisationStorage(sessionID, request));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Handle CustomizationSet */
|
/** Handle CustomizationSet */
|
||||||
|
@ -246,8 +246,8 @@ export class CustomizationController {
|
|||||||
return this.databaseService.getHideout().customisation;
|
return this.databaseService.getHideout().customisation;
|
||||||
}
|
}
|
||||||
|
|
||||||
public getCustomisationStoage(sessionID: string, info: any): ICustomisationStorage[] {
|
public getCustomisationStorage(sessionID: string, info: any): ICustomisationStorage[] {
|
||||||
return this.databaseService.getTemplates().customisationStoage;
|
return this.databaseService.getTemplates().customisationStorage;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Handle CustomizationSet event */
|
/** Handle CustomizationSet event */
|
||||||
|
@ -12,7 +12,7 @@ import type { IDefaultEquipmentPreset } from "@spt/models/eft/profile/ISptProfil
|
|||||||
|
|
||||||
export interface ITemplates {
|
export interface ITemplates {
|
||||||
character: string[];
|
character: string[];
|
||||||
customisationStoage: ICustomisationStorage[];
|
customisationStorage: ICustomisationStorage[];
|
||||||
items: Record<string, ITemplateItem>;
|
items: Record<string, ITemplateItem>;
|
||||||
prestige: IPrestige;
|
prestige: IPrestige;
|
||||||
quests: Record<string, IQuest>;
|
quests: Record<string, IQuest>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user