Skip to content

Commit

Permalink
add support for negative progress (#111)
Browse files Browse the repository at this point in the history
Co-authored-by: Wannes Gennar <[email protected]>
  • Loading branch information
dealloc and Wannes Gennar authored Sep 20, 2024
1 parent 1c05899 commit 2de2af7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Helldivers-2-Models/ArrowHead/Assignment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Helldivers.Models.ArrowHead;
/// <param name="Setting">Contains detailed information on this assignment like briefing, rewards, ...</param>
public sealed record Assignment(
long Id32,
List<ulong> Progress,
List<long> Progress,
long ExpiresIn,
Setting Setting
);
2 changes: 1 addition & 1 deletion src/Helldivers-2-Models/V1/Assignment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Helldivers.Models.V1;
/// <param name="Expiration">The date when the assignment will expire.</param>
public sealed record Assignment(
long Id,
List<ulong> Progress,
List<long> Progress,
LocalizedMessage Title,
LocalizedMessage Briefing,
LocalizedMessage Description,
Expand Down

0 comments on commit 2de2af7

Please sign in to comment.