From 8f9cc6cd7e588c78f85ce62e3a9f280f9eab1b94 Mon Sep 17 00:00:00 2001 From: Kurt Date: Wed, 31 Oct 2018 13:52:09 -0700 Subject: [PATCH] Fix xmldoc ampersands --- PKHeX.Core/Editing/CommonEdits.cs | 4 ++-- PKHeX.Core/Legality/Encounters/Data/EncounterUtil.cs | 2 +- PKHeX.Core/Legality/RNG/Frame/Frame.cs | 4 ++-- PKHeX.Core/Legality/RNG/Locks/TeamLockResult.cs | 2 +- PKHeX.Core/Legality/Structures/CheckMoveResult.cs | 2 +- PKHeX.Core/Legality/Tables7.cs | 4 ++-- PKHeX.Core/PKM/Util/PKMSorting.cs | 2 +- PKHeX.Core/Saves/Substructures/Gen5/EntreeForest.cs | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/PKHeX.Core/Editing/CommonEdits.cs b/PKHeX.Core/Editing/CommonEdits.cs index 328029b8e..4e92baa84 100644 --- a/PKHeX.Core/Editing/CommonEdits.cs +++ b/PKHeX.Core/Editing/CommonEdits.cs @@ -321,7 +321,7 @@ namespace PKHeX.Core } /// - /// Sets the value depending on the current format and the provided item index & format. + /// Sets the value depending on the current format and the provided item index & format. /// /// Pokémon to modify. /// Held Item to apply @@ -609,7 +609,7 @@ namespace PKHeX.Core /// Gets a moveset for the provided data. /// /// PKM to generate for - /// Full movepool & shuffling + /// Full movepool & shuffling /// Precomputed optional /// 4 moves public static int[] GetMoveSet(this PKM pkm, bool random = false, LegalityAnalysis la = null) diff --git a/PKHeX.Core/Legality/Encounters/Data/EncounterUtil.cs b/PKHeX.Core/Legality/Encounters/Data/EncounterUtil.cs index c7d6295cb..286f71ca8 100644 --- a/PKHeX.Core/Legality/Encounters/Data/EncounterUtil.cs +++ b/PKHeX.Core/Legality/Encounters/Data/EncounterUtil.cs @@ -163,7 +163,7 @@ namespace PKHeX.Core /// /// Sets the value, for use in determining split-generation origins. /// - /// Only used for Gen 1 & 2, as data is not present. + /// Only used for Gen 1 & 2, as data is not present. /// Ingame encounter data /// Version ID to set internal static void MarkEncountersVersion(IEnumerable Areas, GameVersion Version) diff --git a/PKHeX.Core/Legality/RNG/Frame/Frame.cs b/PKHeX.Core/Legality/RNG/Frame/Frame.cs index 51d10728d..73df02ea1 100644 --- a/PKHeX.Core/Legality/RNG/Frame/Frame.cs +++ b/PKHeX.Core/Legality/RNG/Frame/Frame.cs @@ -41,7 +41,7 @@ /// /// Slot Data /// Ancillary pkm data for determining how to check level. - /// Slot number for this frame & lead value. + /// Slot number for this frame & lead value. public bool IsSlotCompatibile(EncounterSlot slot, PKM pkm) { bool usesLevel = !slot.FixedLevel; @@ -75,7 +75,7 @@ /// Gets the slot value for the input slot. /// /// Slot Data - /// Slot number for this frame & lead value. + /// Slot number for this frame & lead value. private int GetSlot(EncounterSlot slot) { // Static and Magnet Pull do a slot search rather than slot mapping 0-99. diff --git a/PKHeX.Core/Legality/RNG/Locks/TeamLockResult.cs b/PKHeX.Core/Legality/RNG/Locks/TeamLockResult.cs index 76a74e186..0b8fc5cba 100644 --- a/PKHeX.Core/Legality/RNG/Locks/TeamLockResult.cs +++ b/PKHeX.Core/Legality/RNG/Locks/TeamLockResult.cs @@ -48,7 +48,7 @@ namespace PKHeX.Core /// /// Player Trainer Shiny Value /// - /// Only used by encounters, which disallow shiny shadow members for both player && CPU TSVs. + /// Only used by encounters, which disallow shiny shadow members for both player & CPU TSVs. private readonly int TSV; private readonly Stack Locks; diff --git a/PKHeX.Core/Legality/Structures/CheckMoveResult.cs b/PKHeX.Core/Legality/Structures/CheckMoveResult.cs index df879e426..021ab5ca2 100644 --- a/PKHeX.Core/Legality/Structures/CheckMoveResult.cs +++ b/PKHeX.Core/Legality/Structures/CheckMoveResult.cs @@ -21,7 +21,7 @@ } /// - /// Move specific to contain in which Generation it was learned & source. + /// Move specific to contain in which Generation it was learned & source. /// public class CheckMoveResult : CheckResult { diff --git a/PKHeX.Core/Legality/Tables7.cs b/PKHeX.Core/Legality/Tables7.cs index 05ef5af8c..b7edd8e96 100644 --- a/PKHeX.Core/Legality/Tables7.cs +++ b/PKHeX.Core/Legality/Tables7.cs @@ -17,10 +17,10 @@ namespace PKHeX.Core internal const int MaxItemID_7_USUM = 959; internal const int MaxAbilityID_7_USUM = 233; - internal const int MaxSpeciesID_7_GG = 808; + internal const int MaxSpeciesID_7_GG = 809; internal const int MaxMoveID_7_GG = 728; // todo internal const int MaxItemID_7_GG = 959; // todo - internal const int MaxAbilityID_7_GG = 233; + internal const int MaxAbilityID_7_GG = MaxAbilityID_7_USUM; #region Met Locations diff --git a/PKHeX.Core/PKM/Util/PKMSorting.cs b/PKHeX.Core/PKM/Util/PKMSorting.cs index 4877fcae2..bae721f03 100644 --- a/PKHeX.Core/PKM/Util/PKMSorting.cs +++ b/PKHeX.Core/PKM/Util/PKMSorting.cs @@ -215,7 +215,7 @@ namespace PKHeX.Core /// Gets a Friendship delta rating to indicate how much the has been raised vs its base Friendship value. /// /// Pokémon data - /// 255 if maxed, else the difference between current & base. + /// 255 if maxed, else the difference between current & base. private static int GetFriendshipDelta(PKM pk) { var currentFriendship = pk.CurrentFriendship; diff --git a/PKHeX.Core/Saves/Substructures/Gen5/EntreeForest.cs b/PKHeX.Core/Saves/Substructures/Gen5/EntreeForest.cs index 449c7a12f..8bce55aff 100644 --- a/PKHeX.Core/Saves/Substructures/Gen5/EntreeForest.cs +++ b/PKHeX.Core/Saves/Substructures/Gen5/EntreeForest.cs @@ -63,7 +63,7 @@ namespace PKHeX.Core } /// - /// Determines how many extra areas are available to enter. Areas 1 & 2 are already available by default. + /// Determines how many extra areas are available to enter. Areas 1 & 2 are already available by default. /// public int Unlock38Areas {