Skip to content

Commit

Permalink
fix: use type int for CampaignId (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
stnokott committed Apr 24, 2024
1 parent f754f2b commit 058c751
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/Status/PlanetEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ public sealed record PlanetEvent(
long MaxHealth,
long StartTime,
long ExpireTime,
long CampaignId,
int CampaignId,
List<int> JointOperationIds
);
2 changes: 1 addition & 1 deletion src/Helldivers-2-Models/V1/Planets/Event.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ public sealed record Event(
long MaxHealth,
DateTime StartTime,
DateTime EndTime,
long CampaignId,
int CampaignId,
List<int> JointOperationIds
);

0 comments on commit 058c751

Please sign in to comment.