mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
Change default TID/SID for gen7+
This commit is contained in:
parent
9ce09c8b1b
commit
b5677758be
|
|
@ -565,8 +565,16 @@ public static SaveFile GetBlankSAV(GameVersion game, string trainerName)
|
|||
SAV.OT = trainerName;
|
||||
|
||||
// Secondary Properties may not be used but can be filled in as template.
|
||||
SAV.TID = 12345;
|
||||
SAV.SID = 54321;
|
||||
if (SAV.Generation >= 7)
|
||||
{
|
||||
SAV.TrainerID7 = 123456;
|
||||
SAV.TrainerSID7 = 1234;
|
||||
}
|
||||
else
|
||||
{
|
||||
SAV.TID = 12345;
|
||||
SAV.SID = 54321;
|
||||
}
|
||||
SAV.Language = (int)LanguageID.English; // English
|
||||
|
||||
// Only set geolocation data for 3DS titles
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user