Skip to content

Commit

Permalink
Merge pull request #21 from BigBang1112/move-avoidskippedmaps
Browse files Browse the repository at this point in the history
Move AvoidSkippedMaps above RequestRules
  • Loading branch information
BigBang1112 authored Aug 11, 2024
2 parents 881fea3 + 52833fd commit 471c15c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/RandomizerTMF.Logic/RandomizerRules.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ public class RandomizerRules
{
public TimeSpan TimeLimit { get; set; } = TimeSpan.FromHours(1);
public bool NoUnlimiter { get; set; } = true;

public bool AvoidSkippedMaps { get; set; }

public RequestRules RequestRules { get; init; } = new()
{
Site = ESite.TMNF,
Expand All @@ -15,7 +16,6 @@ public class RandomizerRules
};

public Dictionary<ESite, HashSet<uint>> BannedMaps { get; init; } = [];
public bool AvoidSkippedMaps { get; set; }

public void Serialize(BinaryWriter writer, int version)
{
Expand Down

0 comments on commit 471c15c

Please sign in to comment.