Skip to content

Commit

Permalink
Do not collect autumnaton data when the cowcatcher is equipped (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
gausie authored Apr 3, 2024
1 parent ab8d3a2 commit 812ec3a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/excavator-script/src/projects/autumnaton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@ function checkItem(location: Location, page: string) {

if (!acquired) return null;

// If we have a collection prow installed random items can drop, so this work is less useful.
if (get("autumnatonUpgrades").includes("cowcatcher")) return null;

const actual = ITEM_TO_LOCATION_DETAILS[acquired];

if (actual === expected) return null;
Expand Down

0 comments on commit 812ec3a

Please sign in to comment.