mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05:00
Misc fixes
Provide gen1/2 gb only version origin fetch for personal/moves ty
shadowmario (i assume this fixes things)
make listbox use ingame font for special characters
2f6e30bb3c (r31924945)
ty @pmarkive
This commit is contained in:
parent
2f6e30bb3c
commit
d62a69a6a7
|
|
@ -77,6 +77,11 @@ public static class GameData
|
|||
{ GameVersion.Gen6, Legal.LevelUpAO },
|
||||
{ GameVersion.Gen7, Legal.LevelUpSM },
|
||||
{ GameVersion.VCEvents, Legal.LevelUpY },
|
||||
|
||||
{ GameVersion.Stadium, Legal.LevelUpY },
|
||||
{ GameVersion.EventsGBGen1, Legal.LevelUpY },
|
||||
{ GameVersion.Stadium2, Legal.LevelUpGS },
|
||||
{ GameVersion.EventsGBGen2, Legal.LevelUpGS },
|
||||
};
|
||||
|
||||
private static readonly Dictionary<GameVersion, PersonalTable> Personal = new Dictionary<GameVersion, PersonalTable>
|
||||
|
|
@ -149,6 +154,11 @@ public static class GameData
|
|||
{ GameVersion.Gen6, PersonalTable.AO },
|
||||
{ GameVersion.Gen7, PersonalTable.SM },
|
||||
{ GameVersion.VCEvents, PersonalTable.Y },
|
||||
|
||||
{ GameVersion.Stadium, PersonalTable.Y },
|
||||
{ GameVersion.EventsGBGen1, PersonalTable.Y },
|
||||
{ GameVersion.Stadium2, PersonalTable.GS },
|
||||
{ GameVersion.EventsGBGen2, PersonalTable.GS },
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ public SAV_SecretBase(SaveFile sav)
|
|||
SetupComboBoxes();
|
||||
PopFavorite();
|
||||
PopFavorite();
|
||||
TB_FOT.Font = TB_FT1.Font = TB_FT2.Font = TB_FSay1.Font = TB_FSay2.Font = TB_FSay3.Font = TB_FSay4.Font = FontUtil.GetPKXFont(11);
|
||||
TB_FOT.Font = TB_FT1.Font = TB_FT2.Font = TB_FSay1.Font = TB_FSay2.Font = TB_FSay3.Font = TB_FSay4.Font = LB_Favorite.Font = FontUtil.GetPKXFont(11);
|
||||
CB_Ability.InitializeBinding();
|
||||
|
||||
LB_Favorite.SelectedIndex = 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user