forked from liza/Questionable
Hide old ishgard restoration instances from gathering point stats
This commit is contained in:
parent
92b6ce315f
commit
2df220ba94
@ -121,6 +121,7 @@ internal sealed class GatheringJournalComponent
|
|||||||
|
|
||||||
_gatheringPointsByExpansion = dataManager.GetExcelSheet<GatheringPoint>()!
|
_gatheringPointsByExpansion = dataManager.GetExcelSheet<GatheringPoint>()!
|
||||||
.Where(x => x.GatheringPointBase.Row != 0)
|
.Where(x => x.GatheringPointBase.Row != 0)
|
||||||
|
.Where(x => x.GatheringPointBase.Row is < 653 or > 680) // exclude ishgard restoration phase 1
|
||||||
.DistinctBy(x => x.GatheringPointBase.Row)
|
.DistinctBy(x => x.GatheringPointBase.Row)
|
||||||
.Select(x => new
|
.Select(x => new
|
||||||
{
|
{
|
||||||
@ -170,6 +171,7 @@ internal sealed class GatheringJournalComponent
|
|||||||
})
|
})
|
||||||
.Where(x => x.Expansion != (EExpansionVersion)byte.MaxValue)
|
.Where(x => x.Expansion != (EExpansionVersion)byte.MaxValue)
|
||||||
.Where(x => x.GatheringItemIds.Count > 0)
|
.Where(x => x.GatheringItemIds.Count > 0)
|
||||||
|
.Where(x => x.TerritoryType is not 901 and not 929) // exclude old diadem
|
||||||
.GroupBy(x => x.Expansion)
|
.GroupBy(x => x.Expansion)
|
||||||
.Select(x => new ExpansionPoints(x.Key, x
|
.Select(x => new ExpansionPoints(x.Key, x
|
||||||
.GroupBy(y => new
|
.GroupBy(y => new
|
||||||
|
Loading…
Reference in New Issue
Block a user