Skip to content

Commit

Permalink
Minor logic change to match variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
CardBreaker committed Sep 23, 2023
1 parent a08114c commit 543a5c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RaidCrawler.WinForms/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1663,10 +1663,10 @@ private bool StopAdvanceDate(List<uint> previousSeeds)
{
var raids = RaidContainer.Raids;
var curSeeds = raids.Select(x => x.Seed).ToArray();
var didRaidsChange = curSeeds.Except(previousSeeds).ToArray().Length == 0;
var didRaidsChange = curSeeds.Except(previousSeeds).ToArray().Length != 0;

StatDaySkipTries++;
if (didRaidsChange)
if (!didRaidsChange)
return false;

StatDaySkipSuccess++;
Expand Down

0 comments on commit 543a5c6

Please sign in to comment.