Disallow dynamax level on story legends

ty @sora10pls
This commit is contained in:
Kurt 2019-11-20 18:15:21 -08:00
parent 473afb8377
commit f30a14ebf0

View file

@ -330,7 +330,7 @@ namespace PKHeX.Core
if (pk8.DynamaxLevel != 0)
{
if (pk8.IsEgg || pk8.DynamaxLevel > 10)
if (pk8.IsEgg || pk8.DynamaxLevel > 10 || pk8.Species >= (int)Species.Zacian)
data.AddLine(GetInvalid(LStatDynamaxInvalid));
}