mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-27 16:22:14 -05:00
commit
6a514df63d
|
|
@ -25,7 +25,7 @@ public LegalityAnalysis(PKM pk)
|
|||
{
|
||||
if (!(pk is PK6))
|
||||
return;
|
||||
pk6 = pk as PK6;
|
||||
pk6 = (PK6) pk;
|
||||
try
|
||||
{
|
||||
updateRelearnLegality();
|
||||
|
|
|
|||
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
namespace PKHeX
|
||||
{
|
||||
static class Program
|
||||
internal static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
private static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user