From 1b68e6d4d3b9c4fa48795362bbf99896f56498b6 Mon Sep 17 00:00:00 2001 From: Kalista Payne Date: Tue, 10 Feb 2026 17:07:47 -0600 Subject: [PATCH] fix(event): show Spring Seasonal Shop on Valentines --- website/client/src/components/shops/seasonal/index.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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');