Pokemon location tooltip fix for PLA + miscellaneous comment fixes (#3920)

* Fix Pokemon tooltip for LA incorrectly referring to SwSh location table

* Fixes to comments referring to incorrect generation/version/game

---------

Co-authored-by: James Park <5295838+pencilethics@users.noreply.github.com>
This commit is contained in:
James Park 2023-06-21 03:36:28 +10:00 committed by GitHub
parent 84694c63df
commit 0ba64a8da2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 7 additions and 7 deletions

View file

@ -763,7 +763,7 @@ public sealed class GameStrings : IBasicStrings
6 => Gen6,
7 => GameVersion.Gen7b.Contains(version) ? Gen7b : Gen7,
8 when version is GameVersion.PLA => Gen8,
8 when version is GameVersion.PLA => Gen8a,
8 when GameVersion.BDSP.Contains(version) => Gen8b,
8 => Gen8,
9 => Gen9,

View file

@ -6,7 +6,7 @@ namespace PKHeX.Core;
/// <inheritdoc cref="EncounterArea" />
/// <summary>
/// <see cref="GameVersion.SWSH"/> encounter area
/// <see cref="GameVersion.PLA"/> encounter area
/// </summary>
public sealed record EncounterArea8a : EncounterArea
{

View file

@ -3,7 +3,7 @@ using System;
namespace PKHeX.Core;
/// <summary>
/// Encounter Slot found in <see cref="GameVersion.SWSH"/>.
/// Encounter Slot found in <see cref="GameVersion.PLA"/>.
/// </summary>
/// <inheritdoc cref="EncounterSlot"/>
public sealed record EncounterSlot8a : EncounterSlot, IAlphaReadOnly, IMasteryInitialMoveShop8

View file

@ -4,7 +4,7 @@ using static PKHeX.Core.AreaWeather9;
namespace PKHeX.Core;
/// <summary>
/// Encounter Slot found in <see cref="GameVersion.SWSH"/>.
/// Encounter Slot found in <see cref="GameVersion.SV"/>.
/// </summary>
/// <inheritdoc cref="EncounterSlot"/>
public sealed record EncounterSlot9 : EncounterSlot

View file

@ -4,7 +4,7 @@ using static PKHeX.Core.StaticCorrelation8bRequirement;
namespace PKHeX.Core;
/// <summary>
/// Generation 7 Static Encounter
/// Generation 8 Static Encounter
/// </summary>
/// <inheritdoc cref="EncounterStatic"/>
public sealed record EncounterStatic8b : EncounterStatic, IStaticCorrelation8b

View file

@ -1,7 +1,7 @@
namespace PKHeX.Core;
/// <summary>
/// Generation 7 Trade Encounter
/// Generation 8 BD/SP Trade Encounter
/// </summary>
/// <inheritdoc cref="EncounterTrade"/>
public sealed record EncounterTrade8b : EncounterTrade, IContestStatsReadOnly, IScaledSizeReadOnly, IFixedOTFriendship

View file

@ -5,7 +5,7 @@ using static System.Buffers.Binary.BinaryPrimitives;
namespace PKHeX.Core;
/// <summary>
/// Generation 9 <see cref="SaveFile"/> object for <see cref="GameVersion.SWSH"/> games.
/// Generation 9 <see cref="SaveFile"/> object for <see cref="GameVersion.SV"/> games.
/// </summary>
public sealed class SAV9SV : SaveFile, ISaveBlock9Main, ISCBlockArray, ISaveFileRevision
{