diff --git a/PKHeX/PKM/PK7.cs b/PKHeX/PKM/PK7.cs index f7617b6c7..2497f312a 100644 --- a/PKHeX/PKM/PK7.cs +++ b/PKHeX/PKM/PK7.cs @@ -622,25 +622,26 @@ private void UpdateEgg(int Day, int Month, int Year) } private void TradeGeoLocation(int GeoCountry, int GeoRegion) { - // Allow the method to abort if the values are invalid - if (GeoCountry < 0 || GeoRegion < 0) - return; - - // Trickle down - Geo5_Country = Geo4_Country; - Geo5_Region = Geo4_Region; - - Geo4_Country = Geo3_Country; - Geo4_Region = Geo3_Region; - - Geo3_Country = Geo2_Country; - Geo3_Region = Geo2_Region; - - Geo2_Country = Geo1_Country; - Geo2_Region = Geo1_Region; - - Geo1_Country = GeoCountry; - Geo1_Region = GeoRegion; + return; // No geolocations are set, ever! + //// Allow the method to abort if the values are invalid + //if (GeoCountry < 0 || GeoRegion < 0) + // return; + // + //// Trickle down + //Geo5_Country = Geo4_Country; + //Geo5_Region = Geo4_Region; + // + //Geo4_Country = Geo3_Country; + //Geo4_Region = Geo3_Region; + // + //Geo3_Country = Geo2_Country; + //Geo3_Region = Geo2_Region; + // + //Geo2_Country = Geo1_Country; + //Geo2_Region = Geo1_Region; + // + //Geo1_Country = GeoCountry; + //Geo1_Region = GeoRegion; } public void TradeMemory(bool Bank) {