diff --git a/website/common/script/content/bundles.js b/website/common/script/content/bundles.js index 4576c5e727..f9b3666fab 100644 --- a/website/common/script/content/bundles.js +++ b/website/common/script/content/bundles.js @@ -178,9 +178,9 @@ const bundles = { 'penguin', 'rooster', ], - event: EVENTS.bundle202109, + event: EVENTS.bundle202305, canBuy () { - return moment().isBefore(EVENTS.bundle202109.end); + return moment().isBefore(EVENTS.bundle202305.end); }, type: 'quests', value: 7, diff --git a/website/common/script/content/constants/events.js b/website/common/script/content/constants/events.js index 2349bcbffc..d68c78ee21 100644 --- a/website/common/script/content/constants/events.js +++ b/website/common/script/content/constants/events.js @@ -15,6 +15,10 @@ export const EVENTS = { season: 'normal', npcImageSuffix: '', }, + bundle202305: { + start:'2023-05-23T08:00-04:00', + end:'2023-05-31T23:59-04:00', + }, potions202305: { start:'2023-05-16T08:00-04:00', end:'2023-05-31T23:59-04:00', diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index 57ca7da7ff..13eb8ddff9 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -45,19 +45,19 @@ const featuredItems = { ]; }, quests () { // start date is 3/28 - if (moment().isBetween(EVENTS.bundle202303.start, EVENTS.bundle202303.end)) { + if (moment().isBetween(EVENTS.bundle202305.start, EVENTS.bundle202305.end)) { return [ { type: 'bundles', - path: 'bundles.jungleBuddies', + path: 'bundles.birdBuddies', }, { type: 'quests', - path: 'quests.kraken', + path: 'quests.harpy', }, { type: 'quests', - path: 'quests.nudibranch', + path: 'quests.owl', }, ]; }