Skip to content

Commit

Permalink
initialise object correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
sargeantPig committed Jan 1, 2024
1 parent 66e6020 commit 8c1de25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RTWLibPlus/dataWrappers/dr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DR : BaseWrapper, IWrapper
public string GetName() => this.name;

private readonly Dictionary<string, string> regionsByColour = new();
public List<string> Regions { get; set; }
public List<string> Regions { get; set; } = new();

public DR(string outputPath, string loadPath)
{
Expand Down

0 comments on commit 8c1de25

Please sign in to comment.