diff --git a/src/characters.ts b/src/characters.ts index dadadb7..f6b98f6 100644 --- a/src/characters.ts +++ b/src/characters.ts @@ -47,4 +47,4 @@ export interface Character { skills: [Skill, Skill, Skill] } -export const CHARACTERS: Collection = new Collection(charactersJSON.map((element, index) => {return [index, element]})); \ No newline at end of file +export const CHARACTERS: Collection = new Collection(charactersJSON.map((element, index) => {return [index, element as Character]})); \ No newline at end of file