Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EliphasNUIT committed Jun 16, 2024
1 parent 2d84ad1 commit 9b23e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GW2EIEvtcParser/EncounterLogic/FightLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ protected virtual void SetInstanceBuffs(ParsedEvtcLog log)
{
if (x.GetBuffGraphs(log).TryGetValue(SkillIDs.Emboldened, out BuffsGraphModel graph))
{
return graph.BuffChart.Where(y => y.IntersectSegment(log.FightData.FightStart, end).Max(y => y.Value);
return graph.BuffChart.Where(y => y.IntersectSegment(log.FightData.FightStart, end)).Max(y => y.Value);
}
else
{
Expand Down

0 comments on commit 9b23e55

Please sign in to comment.