diff --git a/website/common/script/content/bundles.js b/website/common/script/content/bundles.js index 6f9e97ac26..bcbe083860 100644 --- a/website/common/script/content/bundles.js +++ b/website/common/script/content/bundles.js @@ -68,8 +68,9 @@ const bundles = { 'spider', 'frog', ], + event: EVENTS.bundle202210, canBuy () { - return moment().isBetween('2019-10-15', '2019-11-02'); + return moment().isBetween(EVENTS.bundle202210.start, EVENTS.bundle202210.end); }, type: 'quests', value: 7, diff --git a/website/common/script/content/constants/events.js b/website/common/script/content/constants/events.js index 5b01144d48..e87b52fb7d 100644 --- a/website/common/script/content/constants/events.js +++ b/website/common/script/content/constants/events.js @@ -32,6 +32,10 @@ export const EVENTS = { end: '2022-10-13T20:00-04:00', gemsPromo, }, + bundle202210: { + start: '2022-10-13T08:00-04:00', + end: '2022-10-31T20:00-04:00', + }, beforeGala: { start: '2022-07-31T20:00-04:00', end: '2022-09-20T08:00-04:00', diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index 3fe7c933a8..ea7e7da54f 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -45,19 +45,19 @@ const featuredItems = { ]; }, quests () { - if (moment().isBetween(EVENTS.bundle202208.start, EVENTS.bundle202209.end)) { + if (moment().isBetween(EVENTS.bundle202210.start, EVENTS.bundle202210.end)) { return [ { type: 'bundles', - path: 'bundles.forestFriends', - }, - { - type: 'bundles', - path: 'bundles.farmFriends', + path: 'bundles.witchyFamiliars', }, { type: 'quests', - path: 'quests.ferret', + path: 'quests.snake', + }, + { + type: 'quests', + path: 'quests.owl', }, ]; }