Skip to content

Commit

Permalink
update nuget dependancies
Browse files Browse the repository at this point in the history
  • Loading branch information
architdate committed Aug 6, 2021
1 parent d4646da commit c428f3d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion AutoLegalityMod/AutoModPlugins.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<ItemGroup>
<Reference Include="System.Windows.Forms" />
<PackageReference Include="PKHeX.Core" Version="21.5.21" />
<PackageReference Include="PKHeX.Core" Version="21.8.6" />
<ProjectReference Include="..\PKHeX.Core.AutoMod\PKHeX.Core.AutoMod.csproj" />
<ProjectReference Include="..\PKHeX.Core.Enhancements\PKHeX.Core.Enhancements.csproj" />
<ProjectReference Include="..\PKHeX.Core.Injection\PKHeX.Core.Injection.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion AutoModTests/AutoModTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="PKHeX.Core" Version="21.5.21" />
<PackageReference Include="PKHeX.Core" Version="21.8.6" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions PKHeX.Core.AutoMod/AutoMod/APILegality.cs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ private static void ValidateGender(PKM pk)
// check for mixed->fixed gender incompatibility by checking the gender of the original species
if (Legal.FixedGenderFromBiGender.Contains(pk.Species) && pk.Gender != 2) // shedinja
{
pk.Gender = PKX.GetGenderFromPID(new LegalInfo(pk).EncounterMatch.Species, pk.EncryptionConstant);
pk.Gender = PKX.GetGenderFromPID(new LegalInfo(pk, new List<CheckResult>()).EncounterMatch.Species, pk.EncryptionConstant);
// genderValid = true; already true if we reach here
}
}
Expand Down Expand Up @@ -936,7 +936,7 @@ private static PIDType FindLikelyPIDType(PKM pk)
pk.Egg_Location = Locations.LinkTrade4; // todo: really shouldn't be doing this, don't modify pkm
return PIDType.Method_1;
}
var info = new LegalInfo(pk);
var info = new LegalInfo(pk, new List<CheckResult>());
EncounterFinder.FindVerifiedEncounter(pk, info);
return pk.Generation switch
{
Expand Down
2 changes: 1 addition & 1 deletion PKHeX.Core.AutoMod/AutoMod/Util/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public static class ALMVersion

{
public const string CurrentVersion = "21.05.21";
public const string CurrentVersion = "21.08.06";

/*
* TODO: Add other versioning code, maybe compatability lists here?
Expand Down
2 changes: 1 addition & 1 deletion PKHeX.Core.AutoMod/PKHeX.Core.AutoMod.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PKHeX.Core" Version="21.5.21" />
<PackageReference Include="PKHeX.Core" Version="21.8.6" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion PKHeX.Core.Enhancements/PKHeX.Core.Enhancements.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PKHeX.Core" Version="21.5.21" />
<PackageReference Include="PKHeX.Core" Version="21.8.6" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion PKHeX.Core.Injection/PKHeX.Core.Injection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="LibUsbDotNet" Version="2.2.29" />
<PackageReference Include="PKHeX.Core" Version="21.5.21" />
<PackageReference Include="PKHeX.Core" Version="21.8.6" />
</ItemGroup>

</Project>

0 comments on commit c428f3d

Please sign in to comment.