diff --git a/src/configs/runescape.ts b/src/configs/runescape.ts index edffe91..c6a3c11 100644 --- a/src/configs/runescape.ts +++ b/src/configs/runescape.ts @@ -317,6 +317,7 @@ export const hiscores = { "divination", "invention", "archaeology", + "necromancy", ] as const, } export const miscellaneous = { diff --git a/src/utils/Jagex.ts b/src/utils/Jagex.ts index 4179287..32ee28e 100644 --- a/src/utils/Jagex.ts +++ b/src/utils/Jagex.ts @@ -35,6 +35,7 @@ const defaultSkillTree: Jagex.Hiscores.PlayerSkills = { divination: { rank: 0, level: 1, experience: 0 }, invention: { rank: 0, level: 1, experience: 0 }, archaeology: { rank: 0, level: 1, experience: 0 }, + necromancy: { rank: 0, level: 1, experience: 0 }, } const separateIntoLines = (jagexPlayer: string): string[] => { return jagexPlayer.split("\n")