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