Add missing challenge data entries

This commit is contained in:
Madmadness65 2024-10-27 02:56:16 -05:00
parent 4f95452544
commit b8e87eb488
1 changed files with 2 additions and 0 deletions

View File

@ -4,11 +4,13 @@ export default class ChallengeData {
public id: integer;
public value: integer;
public severity: integer;
public rand: integer;
constructor(source: Challenge | any) {
this.id = source.id;
this.value = source.value;
this.severity = source.severity;
this.rand = source.rand;
}
toChallenge(): Challenge {