Skip to content

Commit

Permalink
Fixed Bad Stacking of Conditional Specialization Bonus Pools
Browse files Browse the repository at this point in the history
  • Loading branch information
DelnarErsike committed Mar 9, 2024
1 parent d7c1864 commit 0454906
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chummer/Backend/Skills/SkillSpecialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public int SpecializationBonus
case Improvement.ImprovementType.SkillCategory:
case Improvement.ImprovementType.SkillGroup:
case Improvement.ImprovementType.SkillGroupBase:
decBonus += objImprovement.Rating;
decBonus += objImprovement.Value;
break;
}
}
Expand Down Expand Up @@ -681,7 +681,7 @@ await Parent.GetDictionaryKeyAsync(token)
case Improvement.ImprovementType.SkillCategory:
case Improvement.ImprovementType.SkillGroup:
case Improvement.ImprovementType.SkillGroupBase:
decBonus += objImprovement.Rating;
decBonus += objImprovement.Value;
break;
}
}
Expand Down

0 comments on commit 0454906

Please sign in to comment.