diff --git a/PKHeX.Core/Game/GameInfo.cs b/PKHeX.Core/Game/GameInfo.cs index aaeb4593c..cbdc27f27 100644 --- a/PKHeX.Core/Game/GameInfo.cs +++ b/PKHeX.Core/Game/GameInfo.cs @@ -242,7 +242,6 @@ private void SanitizeMetLocations() metSM_30000[0] += $" ({NPC})"; // Anything from an NPC metSM_30000[1] += $" ({eggname})"; // Egg From Link Trade for (int i = 2; i <= 5; i++) // distinguish first set of regions (unused) from second (used) - if (i != 3) // except 30004, which is used for VC2 metSM_30000[i] += " (-)"; } diff --git a/PKHeX.Core/Legality/Encounters/EncounterGenerator.cs b/PKHeX.Core/Legality/Encounters/EncounterGenerator.cs index f9df20e87..192624a2f 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterGenerator.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterGenerator.cs @@ -1521,7 +1521,7 @@ private static EncounterStatic GetGSStaticTransfer(int species, int pkmMetLevel) Ability = TransferSpeciesDefaultAbility_2.Contains(species) ? 1 : 4, // Hidden by default, else first Shiny = species == 151 || species == 251 ? (bool?)false : null, Fateful = species == 151 || species == 251, - Location = 30004, // todo + Location = 30017, EggLocation = 0, IV3 = true, Level = pkmMetLevel, diff --git a/PKHeX.Core/Legality/Tables7.cs b/PKHeX.Core/Legality/Tables7.cs index 5790e845b..c96f8d79f 100644 --- a/PKHeX.Core/Legality/Tables7.cs +++ b/PKHeX.Core/Legality/Tables7.cs @@ -35,7 +35,7 @@ public static partial class Legal internal static readonly int[] Met_SM_3 = { - 30001, 30003, 30004, 30005, 30006, 30007, 30008, 30009, 30010, 30011, 30012, 30013, 30014, 30015, 30016, + 30001, 30003, 30004, 30005, 30006, 30007, 30008, 30009, 30010, 30011, 30012, 30013, 30014, 30015, 30016, 30017 }; internal static readonly int[] Met_SM_4 =