diff --git a/website/client/src/components/creatorIntro.vue b/website/client/src/components/creatorIntro.vue index ddfbe4fba9..2dada27683 100644 --- a/website/client/src/components/creatorIntro.vue +++ b/website/client/src/components/creatorIntro.vue @@ -207,13 +207,13 @@
- {{ allBackgrounds.eventBackgrounds.text }} + {{ $t('eventBackgrounds') }}
this.$t('noBackground') }, ]; + this.timeTravelBackgrounds = []; forEach(this.allBackgrounds, bg => { if (bg.set === 'incentiveBackgrounds') { this.standardBackgroundMax += 1; } if (this.user.purchased.background[bg.key]) { - if (bg.set === 'incentiveBackgrounds') { + if (bg.set === 'eventBackgrounds') { + this.eventBackgrounds.push(bg); + } else if (bg.set === 'incentiveBackgrounds') { this.standardBackgrounds.push(bg); } else if (bg.set === 'timeTravelBackgrounds') { this.timeTravelBackgrounds.push(bg);