diff --git a/components/game/player/Slot.vue b/components/game/player/Slot.vue index d373079..5f52e14 100644 --- a/components/game/player/Slot.vue +++ b/components/game/player/Slot.vue @@ -43,7 +43,7 @@ const currentTeam = computed(() => const isPlayerTurn = computed(() => currentTeam.value?.players.some( - (p) => p.user.userId == authStore.selfUser.userId + (p) => p._id == selfPlayer.value?._id ) );