Skip to content

Commit

Permalink
fix(Extras): Had Viper in the wrong category
Browse files Browse the repository at this point in the history
  • Loading branch information
domesticwarlord86 committed Aug 20, 2024
1 parent 55465ba commit 00ef443
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ScriptConditions/Extras.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,10 +200,9 @@ public static bool IsHealingClass()

public static bool IsAimingClass()
{
// (ClassJobType)0x29 Viper
return Core.Me.CurrentJob switch
{
ClassJobType.Archer or ClassJobType.Bard or ClassJobType.Dancer or ClassJobType.Machinist or (ClassJobType)0x29 => true,
ClassJobType.Archer or ClassJobType.Bard or ClassJobType.Dancer or ClassJobType.Machinist => true,
_ => false
};
}
Expand All @@ -228,10 +227,11 @@ public static bool IsStrikingClass()

public static bool IsScoutingClass()
{
// (ClassJobType)0x29 Viper
return Core.Me.CurrentJob switch
{
ClassJobType.Rogue or ClassJobType.Ninja => true,
_ => false
ClassJobType.Rogue or ClassJobType.Ninja or (ClassJobType)0x29 => true,
_ => false
};
}

Expand Down

0 comments on commit 00ef443

Please sign in to comment.