diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 4e100c13..c236be3b 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1,5 +1,4 @@ import { WorldState } from "@/src/models/worldStateModel"; -import buildConfig from "@/static/data/buildConfig.json"; export const createWorldState = async () => { const worldState = new WorldState(); diff --git a/src/types/worldStateTypes.ts b/src/types/worldStateTypes.ts index 036d6a7d..c8d6b8ac 100644 --- a/src/types/worldStateTypes.ts +++ b/src/types/worldStateTypes.ts @@ -112,7 +112,7 @@ export interface ILiteSortie extends IBaseWorldStateObject { Reward: string; Seed: number; Boss: string; - Missions: ISortieMission[] + Missions: ISortieMission[]; } export interface IJob {