Skip to content

Commit

Permalink
Fix healing prop missing
Browse files Browse the repository at this point in the history
  • Loading branch information
1337LutZ committed Aug 13, 2024
1 parent efa11b2 commit 161074f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions sim/core/sim_concurrent.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ func (rsrc *raidSimResultCombiner) addActionMetrics(unit *proto.UnitMetrics, add
baseTgt.CritDamage += addTgt.CritDamage
baseTgt.Threat += addTgt.Threat
baseTgt.Healing += addTgt.Healing
baseTgt.CritHealing += addTgt.CritHealing
baseTgt.Shielding += addTgt.Shielding
baseTgt.CastTimeMs += addTgt.CastTimeMs
}
Expand Down
2 changes: 1 addition & 1 deletion ui/core/proto_utils/sim_result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1000,7 +1000,7 @@ export class ActionMetrics {
get isProc() {
// Return false for now since we need to figure out
// how to remove casts from the combined metrics
return false
return false;
return ActionMetrics.getIsProc(this.actionId);
}

Expand Down

0 comments on commit 161074f

Please sign in to comment.