diff --git a/website/client/src/components/shops/quests/quest-helper.mixin.js b/website/client/src/components/shops/quests/quest-helper.mixin.js index fcaec8e4ec..9e53e7db4a 100644 --- a/website/client/src/components/shops/quests/quest-helper.mixin.js +++ b/website/client/src/components/shops/quests/quest-helper.mixin.js @@ -39,9 +39,16 @@ export const QuestHelperMixin = { return !drop.onlyOwner; }).map(item => { if (item.type === 'gear') { - const contentItem = this.content.gear.flat[item.key]; + return this.content.gear.flat[item.key]; + } - return contentItem; + if (item.type === 'quests') { + const questScroll = {}; + Object.assign(questScroll, this.content.quests[item.key]); + questScroll.type = 'quests'; + questScroll.text = item.text(); + questScroll.onlyOwner = item.onlyOwner; + return questScroll; } return {