mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Disallow dynamax level on story legends
ty @sora10pls
This commit is contained in:
parent
473afb8377
commit
f30a14ebf0
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue