Skip to content

Commit

Permalink
Read is_race from slot data, correct names for min and max prices
Browse files Browse the repository at this point in the history
  • Loading branch information
BadMagic100 committed Sep 23, 2024
1 parent 1bfbd4e commit 555f49d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Archipelago.HollowKnight/Archipelago.HollowKnight.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>The Archipelago Multiworld client for Hollow Knight</Description>
<Copyright>
</Copyright>
<Version>0.6.0</Version>
<Version>0.6.1</Version>
<OutputPath>bin\$(Configuration)\</OutputPath>
<LangVersion>latest</LangVersion>
<Company>The Archipelago Community</Company>
Expand Down
3 changes: 3 additions & 0 deletions Archipelago.HollowKnight/SlotDataModel/SlotData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,8 @@ public class SlotData

[JsonProperty("grub_count")]
public int? GrubsRequired { get; set; }

[JsonProperty("is_race")]
public bool DisableLocalSpoilerLogs { get; set; }
}
}
12 changes: 6 additions & 6 deletions Archipelago.HollowKnight/SlotDataModel/SlotOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,17 @@ public class SlotOptions

public int StartLocation { get; set; }

public int MinGrubPrice { get; set; }
public int MinimumGrubPrice { get; set; }

public int MaxGrubPrice { get; set; }
public int MaximumGrubPrice { get; set; }

public int MinEssencePrice { get; set; }
public int MinimumEssencePrice { get; set; }

public int MaxEssencePrice { get; set; }
public int MaximumEssencePrice { get; set; }

public int MinEggPrice { get; set; }
public int MinimumEggPrice { get; set; }

public int MaxEggPrice { get; set; }
public int MaximumEggPrice { get; set; }

public int RandomCharmCosts { get; set; }

Expand Down

0 comments on commit 555f49d

Please sign in to comment.