Skip to content

Commit

Permalink
Merge pull request #188 from bdach/mods-command-new-flag
Browse files Browse the repository at this point in the history
Add `AlwaysValidForSubmission` to mods command output
  • Loading branch information
peppy authored Nov 12, 2023
2 parents 7dec1f1 + 8cd9998 commit b050937
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions PerformanceCalculator/Difficulty/ModsCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ private IEnumerable<dynamic> getDefinitionsForRuleset(Ruleset ruleset)
mod.UserPlayable,
mod.ValidForMultiplayer,
mod.ValidForMultiplayerAsFreeMod,
mod.AlwaysValidForSubmission,
});

IEnumerable<string> getAllImplementations(Type[] incompatibleTypes)
Expand Down
10 changes: 5 additions & 5 deletions PerformanceCalculator/PerformanceCalculator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<ItemGroup>
<PackageReference Include="Alba.CsConsoleFormat" Version="1.0.0" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
<PackageReference Include="ppy.osu.Game" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Osu" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Taiko" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Catch" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Mania" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Osu" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Taiko" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Catch" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Mania" Version="2023.1114.0" />
</ItemGroup>
</Project>
10 changes: 5 additions & 5 deletions PerformanceCalculatorGUI/PerformanceCalculatorGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Osu" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Taiko" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Catch" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Mania" Version="2023.1012.0" />
<PackageReference Include="ppy.osu.Game" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Osu" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Taiko" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Catch" Version="2023.1114.0" />
<PackageReference Include="ppy.osu.Game.Rulesets.Mania" Version="2023.1114.0" />
</ItemGroup>
</Project>

0 comments on commit b050937

Please sign in to comment.