feat: 🎸 simulation
fix dps and add the push and DPS strategy
This commit is contained in:
@@ -10,16 +10,17 @@ onMounted(() => featureStore.initBoard())
|
||||
|
||||
const pullAndProblemSolving20Percent = () => {
|
||||
if (featureStore.meta.totalDays % 5 === 0) {
|
||||
featureStore.nextDay('problem-solving')
|
||||
featureStore.nextDay('pull-dps')
|
||||
} else {
|
||||
featureStore.nextDay('pull')
|
||||
}
|
||||
}
|
||||
|
||||
const pushAndProblemSolving20Percent = () => {
|
||||
if (featureStore.meta.totalDays % 5 === 0) {
|
||||
featureStore.nextDay('problem-solving')
|
||||
featureStore.nextDay('push-dps')
|
||||
} else {
|
||||
featureStore.nextDay('pull')
|
||||
featureStore.nextDay('push')
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user