fix(shop): add November magic hatching potions to featured items in shop (#15014)

This commit is contained in:
Natalie
2023-11-22 16:14:42 -05:00
committed by GitHub
parent 45aae7ff62
commit 021825ebb9
@@ -5,7 +5,7 @@ import { EVENTS } from './constants';
// path: 'premiumHatchingPotions.Rainbow',
const featuredItems = {
market () {
if (moment().isBetween(EVENTS.fall2023.start, EVENTS.fall2023.end)) {
if (moment().isBetween(EVENTS.potions202311.start, EVENTS.potions202311.end)) {
return [
{
type: 'armoire',
@@ -13,15 +13,15 @@ const featuredItems = {
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Glow',
path: 'premiumHatchingPotions.AutumnLeaf',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Spooky',
path: 'premiumHatchingPotions.Ember',
},
{
type: 'premiumHatchingPotion',
path: 'premiumHatchingPotions.Vampire',
path: 'premiumHatchingPotions.Frost',
},
];
}