feat: game flow draft 2; time machine first draft

This commit is contained in:
pskfyi 2022-01-11 22:23:41 -08:00 committed by pskfyi
commit 233a1a4daa
10 changed files with 181 additions and 19 deletions

View file

@ -12,7 +12,7 @@
export default {
computed: {
unlocked() {
return this.$store.state.processes.filter((p) => p.unlocked)
return this.$store.state.processes.filter((p) => p.unlocked && p.created)
},
},
}