Skip to content

Commit

Permalink
Update to latest PKHeX.Core
Browse files Browse the repository at this point in the history
  • Loading branch information
codemonkey85 committed Mar 14, 2024
1 parent 3349cd9 commit b69e123
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Pkmds.Web/Components/PokemonStorageComponent.razor
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
Class="box-select">
@for (var boxId = 0; boxId < AppState.SaveFile.BoxCount; boxId++)
{
var boxName = AppState.SaveFile.GetBoxName(boxId);
var boxName = AppState.SaveFile is IBoxDetailNameRead saveFile ? saveFile.GetBoxName(boxId) : string.Empty;
<MudSelectItem Value="@boxId">
@boxName
</MudSelectItem>
Expand Down
1 change: 0 additions & 1 deletion Pkmds.Web/Components/SaveFileNameDisplay.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ public partial class SaveFileNameDisplay
{
public static string FriendlyGameName(GameVersion gameVersion) => gameVersion switch
{
Unknown => "Unknown",
Invalid => "Invalid",
S => "Sapphire",
R => "Ruby",
Expand Down
2 changes: 1 addition & 1 deletion Pkmds.Web/Pkmds.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<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.1.13" />
<PackageReference Include="PKHeX.Core" Version="24.3.10" />
<PackageReference Include="KristofferStrube.Blazor.FileSystemAccess" Version="3.2.2" />
</ItemGroup>

Expand Down

0 comments on commit b69e123

Please sign in to comment.