diff --git a/website/client/src/components/shops/quests/buyQuestModal.vue b/website/client/src/components/shops/quests/buyQuestModal.vue
index c95bb14662..1367414d13 100644
--- a/website/client/src/components/shops/quests/buyQuestModal.vue
+++ b/website/client/src/components/shops/quests/buyQuestModal.vue
@@ -83,7 +83,7 @@
-
diff --git a/website/common/script/content/quests.js b/website/common/script/content/quests.js
index d4e1dc06ca..b587b93d6a 100644
--- a/website/common/script/content/quests.js
+++ b/website/common/script/content/quests.js
@@ -4,6 +4,7 @@ import moment from 'moment';
import sortBy from 'lodash/sortBy';
import t from './translation';
import {
+ EVENTS,
USER_CAN_OWN_QUEST_CATEGORIES,
} from './constants';
@@ -3584,7 +3585,7 @@ const quests = {
completion: t('questWaffleCompletion'),
value: 4,
category: 'hatchingPotion',
- limited: true,
+ event: EVENTS.spring2020,
boss: {
name: t('questWaffleBoss'),
hp: 500,
diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js
index 572f5cabe7..926e6a37ea 100644
--- a/website/common/script/content/shop-featuredItems.js
+++ b/website/common/script/content/shop-featuredItems.js
@@ -24,7 +24,7 @@ const featuredItems = {
path: 'premiumHatchingPotions.Celestial',
},
{
- type: 'hatchingPotions',
+ type: 'premiumHatchingPotion',
path: 'hatchingPotions.Veggie',
},
];
diff --git a/website/common/script/libs/getItemInfo.js b/website/common/script/libs/getItemInfo.js
index 1bdf69439b..8de04d099d 100644
--- a/website/common/script/libs/getItemInfo.js
+++ b/website/common/script/libs/getItemInfo.js
@@ -134,7 +134,7 @@ export default function getItemInfo (user, type, item, officialPinnedItems, lang
notes: item.notes(language),
addlNotes: item.addlNotes ? item.addlNotes(language) : null,
group: item.group,
- limited: item.limited ? item.limited : false,
+ event: item.event,
value: item.goldValue ? item.goldValue : item.value,
locked,
previous: content.quests[item.previous]