Skip to content

Commit

Permalink
Merge pull request #3398 from Tharre/desync_fix
Browse files Browse the repository at this point in the history
core: disable trinket desync when using APL
  • Loading branch information
Tharre authored Jul 30, 2023
2 parents c19de9e + f9c9833 commit e81e711
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 e81e711

Please sign in to comment.