Stub geolocation memories

tfw nobody reports that they're gone until weeks after release
This commit is contained in:
Kurt 2016-12-02 19:39:31 -08:00
parent 8d08f291c3
commit 18561259d8

View File

@ -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)
{