Skip to content

Commit

Permalink
Fix active skill indefinitely launching. Fix #94
Browse files Browse the repository at this point in the history
  • Loading branch information
Xele02 committed Aug 26, 2023
1 parent 1e40af4 commit 137b316
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected void SetupTrigger()
t.Initialize(masterSkill.ELEPHBOKIGK_LimitCount[0]);
triggers.Add(t);
}
else if (masterSkill.CPNAGMFCIJK_TriggerType != (int)SkillTrigger.Type.EveryTime && centerPlate)
else if (masterSkill.CPNAGMFCIJK_TriggerType != (int)SkillTrigger.Type.EveryTime || centerPlate)
{
t.Initialize(1);
triggers.Add(t);
Expand Down

1 comment on commit 137b316

@Xele02
Copy link
Owner Author

@Xele02 Xele02 commented on 137b316 Aug 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More like live skill not in center than active skill

Please sign in to comment.