This commit is contained in:
Anna 2022-09-05 22:45:45 -04:00
parent 87b7881cf9
commit a59ff6867c
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -23,7 +23,13 @@ internal class Messages : IDisposable {
this.Plugin = plugin;
foreach (var cfc in this.Plugin.DataManager.GetExcelSheet<ContentFinderCondition>()!) {
if (cfc.ContentType.Row == 4) {
// Trials, Raids, and Ultimate Raids
if (cfc.ContentType.Row is 4 or 5 or 28) {
// "Raids" - but we only want non-alliance raids
if (cfc.ContentType.Row == 5 && cfc.ContentMemberType.Row == 4) {
continue;
}
this.Trials.Add(cfc.TerritoryType.Row);
}