Fix lib for new items JSON

This commit is contained in:
Christopher Monsanto
2021-12-21 11:27:00 -05:00
parent 741c73f2d3
commit 2902ddeb37
3 changed files with 11 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ export type SpecieEntry = {
export type ItemEntry = {
type : 'item',
sid : string,
name : string
names : string[]
};
export type Entry = SpecieEntry | ItemEntry;