diff --git a/website/client/src/components/shops/seasonal/index.vue b/website/client/src/components/shops/seasonal/index.vue index f2ce8f11b3..b96d8ee823 100644 --- a/website/client/src/components/shops/seasonal/index.vue +++ b/website/client/src/components/shops/seasonal/index.vue @@ -498,8 +498,13 @@ export default { await this.triggerGetWorldState(); this.currentEvent = _find(this.currentEventList, event => Boolean(event.season)); - this.imageURLs.background = `url(/static/npc/${this.currentEvent.season}/seasonal_shop_opened_background.png)`; - this.imageURLs.npc = `url(/static/npc/${this.currentEvent.season}/seasonal_shop_opened_npc.png)`; + if (this.currentEvent.season === 'valentines') { + this.imageURLs.background = `url(/static/npc/spring/seasonal_shop_opened_background.png)`; + this.imageURLs.npc = `url(/static/npc/spring/seasonal_shop_opened_npc.png)`; + } else { + this.imageURLs.background = `url(/static/npc/${this.currentEvent.season}/seasonal_shop_opened_background.png)`; + this.imageURLs.npc = `url(/static/npc/${this.currentEvent.season}/seasonal_shop_opened_npc.png)`; + } }, beforeDestroy () { this.$root.$off('buyModal::boughtItem');