mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Fix property reference
oops
This commit is contained in:
parent
ea5a981f4a
commit
98a1677d14
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace PKHeX.Core
|
|||
public static ITrainerInfo Trainer { private get; set; } = new SimpleTrainerInfo();
|
||||
public static int Country => Trainer.Country;
|
||||
public static int Region => Trainer.SubRegion;
|
||||
public static int ConsoleRegion => Trainer.SubRegion;
|
||||
public static int ConsoleRegion => Trainer.ConsoleRegion;
|
||||
public static string OT_Name => Trainer.OT;
|
||||
public static int OT_Gender => Trainer.Gender;
|
||||
public static int Language => Trainer.Language;
|
||||
|
|
Loading…
Reference in a new issue