Fix gen4 egg transfer egg location

Egg Location wasn't explicitly kept, only the 'faraway place' was kept.
Closes #1498
This commit is contained in:
Kurt 2017-09-27 19:39:30 -07:00
parent 7c58bf0161
commit 2c8e2176e9

View File

@ -432,6 +432,7 @@ public PK5 ConvertToPK5()
pk5.Met_Location = pk5.Gen4 && pk5.FatefulEncounter && Array.IndexOf(Legal.CrownBeasts, pk5.Species) >= 0
? (pk5.Species == 251 ? 30010 : 30012) // Celebi : Beast
: 30001; // Pokétransfer (not Crown)
pk5.Egg_Location = Egg_Location;
// Delete HGSS Data
BitConverter.GetBytes((ushort)0).CopyTo(pk5.Data, 0x86);