Skip to content

Commit

Permalink
Merge pull request #13 from japsuu/dev
Browse files Browse the repository at this point in the history
Remove debug statements ;)
  • Loading branch information
japsuu authored Feb 25, 2024
2 parents d33310d + 369af1b commit a1e211a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OsrsFlipper/Flipper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public async Task<List<ItemDump>> FindDumps()
}

// Check if the item passes all pruning filters.
if (entry.Item.Id != 2)
// DEBUG-TEST: if (entry.Item.Id != 2)
if (!_filterCollection.PassesPruneTest(entry))
continue;
itemsPassedPruneCount++;
Expand All @@ -196,7 +196,7 @@ public async Task<List<ItemDump>> FindDumps()
continue;

// Check if the item passes all flip filters.
if (entry.Item.Id != 2)
// DEBUG-TEST: if (entry.Item.Id != 2)
if (!_filterCollection.PassesFlipTest(entry, history5Min))
continue;

Expand Down

0 comments on commit a1e211a

Please sign in to comment.