Skip to content

Commit

Permalink
Update packages, fix Urshifu
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkey85 committed Apr 8, 2024
1 parent d895974 commit 395dc24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pkmds.Web/Pkmds.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.3" PrivateAssets="all" />
<PackageReference Include="MudBlazor" Version="6.17.0" />
<PackageReference Include="PKHeX.Core" Version="24.3.10" />
<PackageReference Include="MudBlazor" Version="6.19.1" />
<PackageReference Include="PKHeX.Core" Version="24.3.26" />
<PackageReference Include="KristofferStrube.Blazor.FileSystemAccess" Version="3.2.2" />
</ItemGroup>

Expand Down
1 change: 1 addition & 0 deletions Pkmds.Web/SpriteHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public static string GetPokemonSpriteFilename(PKM? pokemon) =>
{ Form: > 0 } => pokemon.Species switch
{
(ushort)Species.Scatterbug or (ushort)Species.Spewpa => pokemon.Species.ToString(),
(ushort)Species.Urshifu => pokemon.Species.ToString(),
_ => $"{pokemon.Species}-{pokemon.Form}",
},
{ Species: > (ushort)Species.None and < (ushort)Species.MAX_COUNT } =>
Expand Down

0 comments on commit 395dc24

Please sign in to comment.