Don't apply template fake console data if invalid

pkmeditor only for blank data load
This commit is contained in:
Kurt 2019-12-08 20:09:45 -08:00
parent 5e1fd36b96
commit 8e1fe5e305

View file

@ -55,7 +55,7 @@ namespace PKHeX.Core
pk.OT_Gender = tr.Gender;
pk.TID = tr.TID;
pk.SID = tr.SID;
if (tr.ConsoleRegion != 0)
if (tr.ConsoleRegion >= 0)
{
pk.ConsoleRegion = tr.ConsoleRegion;
pk.Country = tr.Country;