Update EncounterTrade1.cs

This commit is contained in:
Kurt 2020-11-01 15:58:42 -08:00
parent 4db6661ffd
commit 24346cc4e1

View file

@ -45,8 +45,6 @@
{
if (Level > pkm.CurrentLevel) // minimum required level
return false;
if (!(pkm is PK1 pk1) || !pkm.Gen1_NotTradeback)
return true;
if (Version == GameVersion.BU)
{
@ -58,6 +56,9 @@
return false;
}
if (!(pkm is PK1 pk1) || !pkm.Gen1_NotTradeback)
return true;
var req = GetInitialCatchRate();
return req == pk1.Catch_Rate;
}