From 6bbbfa13e44e6c1fc208d00df71b12aeb4d1ce3b Mon Sep 17 00:00:00 2001 From: Erzangel Date: Sat, 18 May 2024 19:22:04 +0200 Subject: [PATCH 1/2] fix: picture for 28 (cirno) --- public/cards/028.png | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/cards/028.png b/public/cards/028.png index ac10a0b..e221cb2 100644 --- a/public/cards/028.png +++ b/public/cards/028.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26fc31b6567cbc496cc178e2b58758bf9904e9fbd9cd8884e8f457785beb0019 -size 129912 +oid sha256:9fcd5845b7168b626a9c34bb9050f198289501a9eef1e5ecfae6a0aa31c9f34b +size 130057 From 40d0c65eb1864b3937ace50d0377d8f0909786f7 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sun, 19 May 2024 01:25:00 +0200 Subject: [PATCH 2/2] Fix some store turn error --- stores/turn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stores/turn.ts b/stores/turn.ts index b6c172a..784cfc2 100644 --- a/stores/turn.ts +++ b/stores/turn.ts @@ -5,7 +5,7 @@ import { CardEffects, type Effect } from "~/netcode/Effect"; import type { Player } from "~/netcode/Player"; watch( - () => goStore.current_game?.current_turn.uuid, + () => goStore.current_game?.current_turn?.uuid, () => { useClientSideStore().activatedClientside = [] })