mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-25 20:07:09 +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.DynamaxLevel != 0)
|
||||||
{
|
{
|
||||||
if (pk8.IsEgg || pk8.DynamaxLevel > 10)
|
if (pk8.IsEgg || pk8.DynamaxLevel > 10 || pk8.Species >= (int)Species.Zacian)
|
||||||
data.AddLine(GetInvalid(LStatDynamaxInvalid));
|
data.AddLine(GetInvalid(LStatDynamaxInvalid));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue