There was an error while loading. Please reload this page.
1 parent 9959fb4 commit 04e4f59Copy full SHA for 04e4f59
1 file changed
internal/characters/jahoda/skill.go
@@ -198,9 +198,8 @@ func (c *char) fillFlaskGauge(amount int) func() {
198
Write("previous flask gauge", prevFlaskGauge).
199
Write("current flask gauge", c.flaskGauge)
200
201
- // if the flask is full OR the max duration of the state is reached
202
- // OR the skill is rescast, drain the flask
203
- if c.flaskGauge >= flaskGaugeMax || !c.StatusIsActive(shadowPursuitKey) || c.Core.F >= shadowPursuitMaxDuration+c.skillSrc {
+ // if the flask is full drain the flask
+ if c.flaskGauge >= flaskGaugeMax {
204
c.Core.Tasks.Add(c.drainFlask(c.skillSrc), drainFlaskHitmark)
205
return
206
}
0 commit comments