From 7f2b92723d3bcd266c03be0acaa757594b890307 Mon Sep 17 00:00:00 2001 From: James Tanner Date: Tue, 5 Dec 2023 20:53:53 -0800 Subject: [PATCH] Fix bug with EP calc when using APL rotations --- ui/core/sim.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/core/sim.ts b/ui/core/sim.ts index 5b1c718e86..def668201e 100644 --- a/ui/core/sim.ts +++ b/ui/core/sim.ts @@ -340,7 +340,7 @@ export class Sim { ? [UnitReference.create({ type: UnitType.Player, index: 0 })] : []; const request = StatWeightsRequest.create({ - player: player.toProto(), + player: player.toProto(false, true), raidBuffs: this.raid.getBuffs(), partyBuffs: player.getParty()!.getBuffs(), debuffs: this.raid.getDebuffs(),