Skip to content

Commit

Permalink
haha im so dumb
Browse files Browse the repository at this point in the history
  • Loading branch information
clxmente committed Jul 25, 2024
1 parent 1cb7556 commit 06558a9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/pages/shipping.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,7 @@ export default function Shipping() {
let basicShippedCount = 0;

Object.keys(activePlayer.shipping.shipped).forEach((key) => {
if (
semverGte(gameVersion, "1.6.0") &&
(key === "372" || key === "SmokedFish")
)
return; // Clam and Smoked Fish is excluded in 1.6
if (semverGte(gameVersion, "1.6.0") && key === "372") return; // Clam and Smoked Fish is excluded in 1.6

// Polyculture calculation
if (shipping_items[key as keyof typeof shipping_items].polyculture) {
Expand Down

0 comments on commit 06558a9

Please sign in to comment.