diff --git a/packages/emporium/src/app/components/TalentSelection.tsx b/packages/emporium/src/app/components/TalentSelection.tsx index 0406196d..bb6d20d8 100644 --- a/packages/emporium/src/app/components/TalentSelection.tsx +++ b/packages/emporium/src/app/components/TalentSelection.tsx @@ -54,9 +54,7 @@ class TalentSelectionComponent extends React.Component { } //talent is ranked and has been selected enough for this tier if ( - talents[key].ranked && talentCount[key] - ? +tier !== +talents[key].tier + talentCount[key] - : false + talents[key].ranked && +tier !== +talents[key].tier + (+talentCount[key] || 0) ) { return false; } diff --git a/packages/emporium/src/assets/data/talents/ROT.json b/packages/emporium/src/assets/data/talents/ROT.json index d841ec7d..7808ddfc 100644 --- a/packages/emporium/src/assets/data/talents/ROT.json +++ b/packages/emporium/src/assets/data/talents/ROT.json @@ -20,7 +20,7 @@ "tier": 1, "activation": true, "turn": "Incidental", - "ranked": true, + "ranked": false, "book": "ROT", "page": "84", "description": "See ROT, page 84, for more details." @@ -866,4 +866,4 @@ "page": "91", "description": "See ROT, page 91, for more details." } -} \ No newline at end of file +} diff --git a/packages/emporium/src/assets/data/talents/SOTB.json b/packages/emporium/src/assets/data/talents/SOTB.json index 7051423c..09c83c4e 100644 --- a/packages/emporium/src/assets/data/talents/SOTB.json +++ b/packages/emporium/src/assets/data/talents/SOTB.json @@ -617,7 +617,7 @@ "activation": true, "turn": "Incidental", "ranked": false, - "prerequiste": "UndercityContacts", + "prerequisite": "UndercityContacts", "book": "SOTB", "page": 51, "description": "See SOTB, page 51, for more details." @@ -794,4 +794,4 @@ "page": 52, "description": "See SOTB, page 52, for more details." } -} \ No newline at end of file +}