Skip to content

Commit

Permalink
fix DD Diff points per level
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Oct 4, 2024
1 parent 533e319 commit 54b7d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/scoring/ijru@4.0.0/DDDifficulty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const modDisabled = computed(() => !isDiffBaseSchema(scoresheet.value?.marks.at(
function L (level: number): number {
if (level === 0) return 0
return Math.round(Math.pow(1.5, level) * 10) / 100
return Math.round(Math.pow(1.5, level) * 100) / 100
}
const levelButtons = computed((): Array<[DiffBaseSchema, number] | null> => [
Expand Down

0 comments on commit 54b7d8f

Please sign in to comment.