Skip to content

Commit

Permalink
hydro resonance fixes #364 (#365)
Browse files Browse the repository at this point in the history
* hydro resonance
* fix event log
  • Loading branch information
HanSeoulOh authored Mar 3, 2022
1 parent bd84fb4 commit e9fc0c1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/simulation/resonance.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ func (s *Simulation) initResonance(count map[core.EleType]int) {
}
case core.Hydro:
//heal not implemented yet
s.C.Log.NewEvent("adding hydro resonance (NO IMPLEMENTED)", core.LogSimEvent, -1)
s.C.Log.NewEvent("adding hydro resonance", core.LogSimEvent, -1)
s.C.Health.AddIncHealBonus(func(healedCharIndex int) float64 {
return 0.3
})
case core.Cryo:
s.C.Log.NewEvent("adding cryo resonance", core.LogSimEvent, -1)
val := make([]float64, core.EndStatType)
Expand Down

0 comments on commit e9fc0c1

Please sign in to comment.