Skip to content

Commit

Permalink
Fix unshipped polyculture items.
Browse files Browse the repository at this point in the history
  • Loading branch information
Esummins committed May 24, 2024
1 parent 73b4eb4 commit 780c071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/shipping.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export default function Shipping() {
i.itemID in shipping_items &&
shipping_items[i.itemID as keyof typeof shipping_items]
.polyculture &&
basicShipped[i.itemID]! < 15
(!basicShipped[i.itemID] || basicShipped[i.itemID]! < 15)
);
} else if (_filter === "2") {
// Shipped/Completed (we won't check for monoculture here)
Expand Down

0 comments on commit 780c071

Please sign in to comment.