From 18561259d8eb0b3ce7e572f2e3d2c8992dde11a8 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 2 Dec 2016 19:39:31 -0800 Subject: [PATCH] Stub geolocation memories tfw nobody reports that they're gone until weeks after release --- PKHeX/PKM/PK7.cs | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) 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) {