diff --git a/website/common/script/content/constants.js b/website/common/script/content/constants.js index 215a5a1086..81dc6aa33c 100644 --- a/website/common/script/content/constants.js +++ b/website/common/script/content/constants.js @@ -39,7 +39,7 @@ export const EVENTS = { summer2019: { start: '2019-06-18', end: '2019-08-02' }, fall2019: { start: '2019-09-24', end: '2019-11-02' }, winter2020: { start: '2019-12-19', end: '2020-02-02' }, - spring2020: { start: '2019-03-17', end: '2020-05-02' }, + spring2020: { start: '2020-03-17', end: '2020-05-02' }, }; export const SEASONAL_SETS = { diff --git a/website/common/script/content/quests.js b/website/common/script/content/quests.js index a5660a76e3..895cd98247 100644 --- a/website/common/script/content/quests.js +++ b/website/common/script/content/quests.js @@ -3621,6 +3621,9 @@ each(quests, (v, key) => { defaults(v, { key, canBuy () { + if (v.event) { + return moment().isBetween(v.event.start, v.event.end); + } return true; }, });