From 9bd07034a5b8a3e91cf3057d26fd944521f04d9b Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Fri, 2 Oct 2020 15:08:13 -0500 Subject: [PATCH] fix(events): make sure we don't create "fall interim" gear --- website/common/script/content/gear/sets/special/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/common/script/content/gear/sets/special/index.js b/website/common/script/content/gear/sets/special/index.js index cc155f28a7..4387d9ae6c 100644 --- a/website/common/script/content/gear/sets/special/index.js +++ b/website/common/script/content/gear/sets/special/index.js @@ -16,7 +16,7 @@ import t from '../../../translation'; const CURRENT_SEASON = moment().isBefore('2020-11-02') ? 'fall' : '_NONE_'; const gearEvents = cloneDeep(EVENTS); gearEvents.fall2020.end = gearEvents.fall2020SecondPromo.end; -['winter', 'birthday', 'gaymerx', 'fall2020SecondPromo'].forEach(nonGearEvent => { +['winter', 'birthday', 'gaymerx', 'fall2020Interim', 'fall2020SecondPromo'].forEach(nonGearEvent => { delete gearEvents[nonGearEvent]; });