Skip to content

Commit

Permalink
Merge pull request #1 from aventurescence/aventurescence
Browse files Browse the repository at this point in the history
Added IsInFRU
  • Loading branch information
aventurescence authored Dec 8, 2024
2 parents ce55b0f + cbf3bbc commit f79a737
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 f79a737

Please sign in to comment.