mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Don't apply template fake console data if invalid
pkmeditor only for blank data load
This commit is contained in:
parent
5e1fd36b96
commit
8e1fe5e305
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue