Default parsesettings tradeback to true

This commit is contained in:
Kurt 2021-02-03 15:39:30 -08:00
parent 230073876f
commit 335ba2447e
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ namespace PKHeX.Core
/// <summary>
/// Setting to specify if an analysis should permit trading a Generation 1 origin file to Generation 2, then back. Useful for checking RBY Metagame rules.
/// </summary>
public static bool AllowGen1Tradeback { get; set; }
public static bool AllowGen1Tradeback { get; set; } = true;
public static Severity NicknamedTrade { get; set; } = Severity.Invalid;
public static Severity NicknamedMysteryGift { get; set; } = Severity.Fishy;

View file

@ -103,7 +103,7 @@ namespace PKHeX.Core
int baseSpecies = EvoBase.GetBaseSpecies(this).Species;
for (int z = baseSpecies; z <= value; z++)
{
if (Rate == PersonalTable.RB[z].CatchRate && Rate == PersonalTable.Y[z].CatchRate)
if (Rate == PersonalTable.RB[z].CatchRate || Rate == PersonalTable.Y[z].CatchRate)
return;
}
Catch_Rate = PersonalTable.RB[value].CatchRate;