mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Default parsesettings tradeback to true
This commit is contained in:
parent
230073876f
commit
335ba2447e
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue