Skip to content
This repository was archived by the owner on May 10, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Felicity/Models/RecommendedRolls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public partial class NewWeaponRoll
{
[JsonPropertyName("weaponRolls")]
public List<WeaponRoll> WeaponRolls { get; set; }

Check warning on line 17 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'WeaponRolls' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 17 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'WeaponRolls' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 17 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'WeaponRolls' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 17 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'WeaponRolls' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
}

public class WeaponRoll
Expand All @@ -32,7 +32,7 @@
public string? Notes { get; set; }

[JsonPropertyName("perks")]
public List<uint> Perks { get; set; }

Check warning on line 35 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Perks' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 35 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Perks' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 35 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Perks' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

Check warning on line 35 in Felicity/Models/RecommendedRolls.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'Perks' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.

[JsonPropertyName("canDrop")]
public bool CanDrop { get; set; }
Expand Down Expand Up @@ -116,7 +116,8 @@
SeasonalPlunder = 118,
SeasonalSeraph = 119,
SeasonalDefiance = 120,
SeasonalDeep = 121
SeasonalDeep = 121,
Unknown = 999
}

public static class ProcessRollData
Expand Down
Loading