why does the shell list never show

This commit is contained in:
Branden J Brown 2024-02-03 13:41:21 -06:00
parent aa95695a11
commit c6edf2a92c
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ const shellList = computed(() => {
}
const l = [...Array(props.game.live).fill('🟥'), ...Array(props.game.blank).fill('🟦')];
shuffle(l);
console.log('compute shell list', props.game, l)
return [...l, ...Array(8 - props.game.live - props.game.blank).fill('⬛')];
});