From a181a9ed40e14ea8452783223cc9febd25639020 Mon Sep 17 00:00:00 2001 From: James Tanner Date: Thu, 12 Oct 2023 20:32:27 -0700 Subject: [PATCH] Forgot to remove debug print --- sim/core/apl_values_auto_attacks.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/sim/core/apl_values_auto_attacks.go b/sim/core/apl_values_auto_attacks.go index 4fa0c7d11e..36c59c42fc 100644 --- a/sim/core/apl_values_auto_attacks.go +++ b/sim/core/apl_values_auto_attacks.go @@ -20,9 +20,6 @@ func (value *APLValueAutoTimeToNext) Type() proto.APLValueType { return proto.APLValueType_ValueTypeDuration } func (value *APLValueAutoTimeToNext) GetDuration(sim *Simulation) time.Duration { - if sim.Log != nil { - sim.Log("TimeToNextAuto: %s", max(0, value.unit.AutoAttacks.NextAttackAt()-sim.CurrentTime)) - } return max(0, value.unit.AutoAttacks.NextAttackAt()-sim.CurrentTime) } func (value *APLValueAutoTimeToNext) String() string {