Better prototype with functioning dependencies and right-clicking

This commit is contained in:
Melvin Valster
2019-07-17 16:20:45 +02:00
parent 7d1b822830
commit f8da695da4
14 changed files with 314 additions and 272 deletions
+10 -1
View File
@@ -3742,4 +3742,13 @@ export const talentsBySpec: Root = {
}]
}
}
}
}
export const talentToSpec: {[key: number]: number} = {}
for (let specId in talentsBySpec) {
for (let talentId in talentsBySpec[specId]) {
talentToSpec[talentId] = parseInt(specId, 10)
}
}
console.log(talentToSpec)