Multiples games in parallel
release-tag / release-image (push) Successful in 58s

This commit is contained in:
2024-05-11 18:16:36 +02:00
parent 2927592ec2
commit 0c650dafc8
9 changed files with 128 additions and 50 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
import goStore from '~/netcode';
import type { Player } from '~/netcode/Player';
const current_players = computed<Array<Player>>(() => Array.from(goStore.players.values()).filter(p => p.team === goStore.game?.current_turn))
const current_players = computed<Array<Player>>(() => Array.from(goStore.players.values()).filter(p => p.team === goStore.current_game?.current_turn))
const discard_unwrapped = ref<boolean>(false)
</script>