Skip to content

Commit

Permalink
core: disable trinket desync when using APL
Browse files Browse the repository at this point in the history
APL has it's own action for desyncing now, so we don't need to use the
legacy rotation option for it.
  • Loading branch information
Tharre committed Jul 30, 2023
1 parent c19de9e commit f9c9833
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sim/core/character.go
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,9 @@ func (character *Character) AddPartyBuffs(partyBuffs *proto.PartyBuffs) {

func (character *Character) initialize(agent Agent) {
character.majorCooldownManager.initialize(character)
character.DesyncTrinketProcs()
if !character.IsUsingAPL {
character.DesyncTrinketProcs()
}

character.gcdAction = &PendingAction{
Priority: ActionPriorityGCD,
Expand Down

0 comments on commit f9c9833

Please sign in to comment.