diff --git a/src/score/score.dto.ts b/src/score/score.dto.ts index 99955f56eff34a41ce46111d7fd0cb9cd597386f..2feecbfd8aecd189d9fb1f8239abf2793fe6051b 100644 --- a/src/score/score.dto.ts +++ b/src/score/score.dto.ts @@ -3,7 +3,7 @@ import { IsNumber, Min, Max, IsUUID } from 'class-validator'; export class ScoreDTO { @IsNumber() @Min(1) - @Max(99) + @Max(999) score: number; @IsUUID('4') faction: string;