We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77b3ed6 commit bfcbac5Copy full SHA for bfcbac5
internal/characters/traveler/common/pyro/skill.go
@@ -250,8 +250,13 @@ func (c *Traveler) particleCB(a combat.AttackCB) {
250
}
251
252
func (c *Traveler) enterNightsoul(src int) {
253
+ points := 42.0
254
+ if !c.nightsoulState.HasBlessing() {
255
+ points += c.nightsoulState.Points()
256
+ }
257
+
258
c.nightsoulSrc = src
- c.nightsoulState.EnterTimedBlessing(c.nightsoulState.Points()+42, 12*60, c.exitNightsoul)
259
+ c.nightsoulState.EnterTimedBlessing(points, 12*60, c.exitNightsoul)
260
c.QueueCharTask(c.nightsoulPointReduceFunc(c.nightsoulSrc), nightsoulReduceDelay)
261
262
0 commit comments