Skip to content

Commit

Permalink
fix shipping 5 saying shipping 6
Browse files Browse the repository at this point in the history
  • Loading branch information
ImUrX committed Dec 26, 2023
1 parent 5e078f5 commit ed97948
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bingus-bot/src/commands/shipping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ You can check on ${SHIP_WHEN_CHANNEL} on the progress of orders.`,
orderInfo.date.getUTCFullYear() === 2022 &&
orderInfo.date.getUTCMonth() <= 5
) {
shipment = 4;
shipment = 3;
}

if (shipment === -1) {
Expand Down Expand Up @@ -167,10 +167,10 @@ You can check on ${SHIP_WHEN_CHANNEL} to see when it's going to get shipped.`,
},
};

const MANUFACUTRED_SHIPMENTS = new Set([0, 1, 2, 3, 4]);
const MANUFACUTRED_SHIPMENTS = new Set([0, 1, 2, 3]);

// Index of shipped shipment
const SHIPPED_SHIPMENTS = new Set([0, 1]);
const SHIPPED_SHIPMENTS = new Set([0]);

// Link to shipment message
const SHIPMENT_MESSAGE = [
Expand Down

0 comments on commit ed97948

Please sign in to comment.