Skip to content

Commit

Permalink
new legend Vivi (deploy)
Browse files Browse the repository at this point in the history
  • Loading branch information
barbarbar338 authored May 3, 2024
1 parent c1c3bca commit 9617133
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/dto/getLegendByID.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@ import { Transform } from "class-transformer";
import { IsDefined, IsNumber, Max, Min, NotEquals } from "class-validator";

export class GetLegendByIDDTO {
// @NotEquals(27) new legend loki uses legend id 27
// @NotEquals(17) new legend red raptor uses legend id 17
// @NotEquals(62) new legend thea uses legend id 62
@IsDefined()
@Transform((i) => parseInt(i.value))
@IsNumber()
@Min(3)
@Max(63)
@Max(64)
@NotEquals(61)
legend_id: number;
}

0 comments on commit 9617133

Please sign in to comment.