Skip to content

Commit 47f7f93

Browse files
committed
fix pmc c2 not activating on reaction
1 parent 8b4d5ab commit 47f7f93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • internal/characters/traveler/common/pyro

internal/characters/traveler/common/pyro/cons.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
const (
1616
c1AttackModKey = "travelerpyro-c1"
17-
c2StatusKey = "travelerpyro-c2-key"
17+
c2StatusKey = "travelerpyro-c2"
1818
c6AttackModKey = "travelerpyro-c6"
1919
)
2020

@@ -50,7 +50,7 @@ func (c *Traveler) c2Init() {
5050
return
5151
}
5252
fReactionHook := func(args ...interface{}) bool {
53-
if c.StatusIsActive(c2StatusKey) {
53+
if !c.StatusIsActive(c2StatusKey) {
5454
return false
5555
}
5656

0 commit comments

Comments
 (0)