Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Kagekazu committed Nov 16, 2024
1 parent 664815e commit afcebbb
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions XIVSlothCombo/Combos/JobHelpers/SGE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,19 @@ namespace XIVSlothCombo.Combos.JobHelpers;
internal class SGE
{
// SGE Gauge & Extensions
public static SGEGauge Gauge => GetJobGauge<SGEGauge>();
public static SGEGauge Gauge = GetJobGauge<SGEGauge>();

public static int Dosis3Count => ActionWatching.CombatActions.Count(x => x == Dosis3);
public static bool HasAddersgall(SGEGauge gauge) => gauge.Addersgall > 0;
public static bool HasAddersting(SGEGauge gauge) => gauge.Addersting > 0;

public static bool HasAddersgall(SGEGauge gauge)
{
return gauge.Addersgall > 0;
}

public static bool HasAddersting(SGEGauge gauge)
{
return gauge.Addersting > 0;
}

internal class SGEOpenerLogic
{
Expand Down

0 comments on commit afcebbb

Please sign in to comment.