Disallow encstatic1 yield catchrate not tradeback

This commit is contained in:
Kurt 2022-03-13 18:29:47 -07:00
parent 8afc6814eb
commit 8f8726ac5e
3 changed files with 2 additions and 2 deletions

View file

@ -60,10 +60,10 @@
protected override bool IsMatchPartial(PKM pkm)
{
if (ParseSettings.AllowGen1Tradeback)
return false;
if (pkm is not PK1 pk1)
return false;
if (PK1.IsCatchRateHeldItem(pk1.Catch_Rate))
return false;
if (IsCatchRateValid(pk1))
return false;
return true;