diff --git a/project/assets/database/templates/customisationStoage.json b/project/assets/database/templates/customisationStorage.json similarity index 100% rename from project/assets/database/templates/customisationStoage.json rename to project/assets/database/templates/customisationStorage.json diff --git a/project/src/callbacks/CustomizationCallbacks.ts b/project/src/callbacks/CustomizationCallbacks.ts index 23741387..fcc4ad3a 100644 --- a/project/src/callbacks/CustomizationCallbacks.ts +++ b/project/src/callbacks/CustomizationCallbacks.ts @@ -75,7 +75,7 @@ export class CustomizationCallbacks { request: IEmptyRequestData, sessionID: string, ): IGetBodyResponseData { - return this.httpResponse.getBody(this.customizationController.getCustomisationStoage(sessionID, request)); + return this.httpResponse.getBody(this.customizationController.getCustomisationStorage(sessionID, request)); } /** Handle CustomizationSet */ diff --git a/project/src/controllers/CustomizationController.ts b/project/src/controllers/CustomizationController.ts index c143f527..4489c954 100644 --- a/project/src/controllers/CustomizationController.ts +++ b/project/src/controllers/CustomizationController.ts @@ -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 */ diff --git a/project/src/models/spt/templates/ITemplates.ts b/project/src/models/spt/templates/ITemplates.ts index ba8bb3b3..e7bc1e14 100644 --- a/project/src/models/spt/templates/ITemplates.ts +++ b/project/src/models/spt/templates/ITemplates.ts @@ -12,7 +12,7 @@ import type { IDefaultEquipmentPreset } from "@spt/models/eft/profile/ISptProfil export interface ITemplates { character: string[]; - customisationStoage: ICustomisationStorage[]; + customisationStorage: ICustomisationStorage[]; items: Record; prestige: IPrestige; quests: Record;