diff --git a/website/common/script/content/constants/events.js b/website/common/script/content/constants/events.js index ded42687c2..c6b7f77919 100644 --- a/website/common/script/content/constants/events.js +++ b/website/common/script/content/constants/events.js @@ -24,14 +24,14 @@ export const EVENTS = { season: 'winter', }, winter2021: { - start: '2020-12-01T08:00-05:00', + start: '2020-12-17T08:00-05:00', end: '2021-01-07T20:00-05:00', season: 'winter', promo: 'g1g1', }, noCurrentEvent2020: { start: '2020-10-31T20:00-05:00', - end: '2020-12-01T08:00-05:00', + end: '2020-12-17T08:00-05:00', season: 'normal', }, fall2020: { diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js index 1bef826511..92c34f1084 100644 --- a/website/common/script/content/hatching-potions.js +++ b/website/common/script/content/hatching-potions.js @@ -232,7 +232,7 @@ const premium = { }), event: EVENTS.winter2021, canBuy () { - return moment().isBetween('2020-12-01T08:00-04:00', '2021-01-31T20:00-04:00'); + return moment().isBetween('2020-12-22T08:00-04:00', '2021-01-31T20:00-04:00'); }, }, RoseQuartz: { @@ -325,7 +325,7 @@ const premium = { }), event: EVENTS.winter2021, canBuy () { - return moment().isBetween('2020-12-01T08:00-04:00', '2021-01-31T20:00-04:00'); + return moment().isBetween('2020-12-22T08:00-04:00', '2021-01-31T20:00-04:00'); }, }, Ruby: { @@ -419,7 +419,7 @@ const premium = { }), event: EVENTS.winter2021, canBuy () { - return moment().isBetween('2020-12-01T08:00-04:00', '2021-01-31T20:00-04:00'); + return moment().isBetween('2020-12-22T08:00-04:00', '2021-01-31T20:00-04:00'); }, }, }; diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index 33c94751be..fd233d1121 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -4,7 +4,7 @@ import moment from 'moment'; // path: 'premiumHatchingPotions.Rainbow', const featuredItems = { market () { - if (moment().isBefore('2020-12-01T08:00-04:00')) { + if (moment().isBefore('2020-12-17T08:00-04:00')) { return [ { type: 'armoire', @@ -64,7 +64,7 @@ const featuredItems = { ]; }, quests () { - if (moment().isBefore('2020-12-01T08:00-04:00')) { + if (moment().isBefore('2020-12-17T08:00-04:00')) { return [ { type: 'quests', diff --git a/website/common/script/libs/shops-seasonal.config.js b/website/common/script/libs/shops-seasonal.config.js index 9558705bfc..b5ec753a67 100644 --- a/website/common/script/libs/shops-seasonal.config.js +++ b/website/common/script/libs/shops-seasonal.config.js @@ -16,7 +16,7 @@ export default { currentSeason: SHOP_OPEN ? upperFirst(CURRENT_EVENT.season) : 'Closed', - dateRange: { start: '2020-12-01', end: '2021-01-31' }, + dateRange: { start: '2020-12-17', end: '2021-01-31' }, availableSets: SHOP_OPEN ? [ @@ -33,7 +33,7 @@ export default { } : {}, - availableSpells: moment().isBetween('2020-12-01T08:00-04:00', '2021-01-31T20:00-04:00') + availableSpells: moment().isBetween('2020-12-29T08:00-04:00', '2021-01-31T20:00-04:00') ? [ 'snowball', ]