Skip to content

Commit

Permalink
do not perform APL actions during pre-pull (#3790)
Browse files Browse the repository at this point in the history
  • Loading branch information
lime-green authored Oct 1, 2023
1 parent 9ae34b3 commit 720085e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sim/core/apl.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ func (rot *APLRotation) reset(sim *Simulation) {
// and leverage the community's existing familiarity.
// https://github.com/simulationcraft/simc/wiki/ActionLists
func (apl *APLRotation) DoNextAction(sim *Simulation) {
if sim.CurrentTime < 0 {
return
}

if apl.inLoop {
return
}
Expand Down

0 comments on commit 720085e

Please sign in to comment.