Skip to content

Commit

Permalink
Misc fixes
Browse files Browse the repository at this point in the history
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

2f6e30b#r31924945
ty @PMArkive
  • Loading branch information
kwsch committed Jan 14, 2019
1 parent 2f6e30b commit d62a69a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions PKHeX.Core/Game/GameData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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 },
};
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d62a69a

Please sign in to comment.