Skip to content

Commit 265b7a2

Browse files
committed
Fix errors
1 parent ce11f5a commit 265b7a2

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

sim/hunter/hunter.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package hunter
22

33
import (
4-
"fmt"
54
"time"
65

76
"github.com/wowsims/mop/sim/core"
@@ -162,10 +161,9 @@ func (hunter *Hunter) GetBaseDamageFromCoeff(coeff float64) float64 {
162161
func (hunter *Hunter) ApplyTalents() {
163162
hunter.applyThrillOfTheHunt()
164163
hunter.applyBlinkStrike()
165-
fmt.Println("Sup2")
166164
hunter.ApplyHotfixes()
167165

168-
hunter.Pet.ApplyTalents()
166+
//hunter.Pet.ApplyTalents()
169167
hunter.Pet.ApplySpecialization()
170168
}
171169

sim/hunter/survival/specializations.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package survival
22

33
import (
4-
"fmt"
54
"time"
65

76
"github.com/wowsims/mop/sim/core"
@@ -12,7 +11,6 @@ func (survHunter *SurvivalHunter) ApplyTalents() {
1211
survHunter.applyLNL()
1312
survHunter.ApplyMods()
1413
survHunter.Hunter.ApplyTalents()
15-
fmt.Println("Sup")
1614
}
1715
func (survHunter *SurvivalHunter) ApplyMods() {
1816
survHunter.AddStaticMod(core.SpellModConfig{

0 commit comments

Comments
 (0)