Skip to content

Commit

Permalink
Merge pull request #469 from aventurescence/main
Browse files Browse the repository at this point in the history
Added IsInFRU to Datacenter.cs
  • Loading branch information
LTS-FFXIV authored Dec 8, 2024
2 parents ce55b0f + f79a737 commit 4fe1a8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion RotationSolver.Basic/DataCenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ internal static bool HasApplyStatus(ulong id, StatusID[] ids)
public static bool IsInTEA => TerritoryID == 887;
public static bool IsInDSR => TerritoryID == 968;
public static bool IsInTOP => TerritoryID == 1122;
public static bool IsInFRU => TerritoryID == 1238;

public static TerritoryContentType TerritoryContentType =>
(TerritoryContentType)(ContentFinder?.ContentType.Value.RowId ?? 0);
Expand Down Expand Up @@ -715,4 +716,4 @@ public static bool IsHostileCastingBase(IBattleChara h, Func<Action, bool> check
// Invoke the check function on the action and return the result
return check?.Invoke(action) ?? false; // Check if check is null
}
}
}

0 comments on commit 4fe1a8a

Please sign in to comment.