mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
sanity check necrozma forms (#2638)
smogon allows Dusk Mane as well as Dusk-Mane as their form argument
This commit is contained in:
parent
41f909c08a
commit
22ed59d6a3
1 changed files with 2 additions and 2 deletions
|
@ -692,9 +692,9 @@ namespace PKHeX.Core
|
|||
return $"C-{form}";
|
||||
|
||||
// Necrozma
|
||||
case (int)Core.Species.Necrozma when form == "Dusk-Mane":
|
||||
case (int)Core.Species.Necrozma when form == "Dusk-Mane" || form == "Dusk Mane":
|
||||
return "Dusk";
|
||||
case (int)Core.Species.Necrozma when form == "Dawn-Wings":
|
||||
case (int)Core.Species.Necrozma when form == "Dawn-Wings" || form == "Dawn Wings":
|
||||
return "Dawn";
|
||||
|
||||
// Toxtricity
|
||||
|
|
Loading…
Reference in a new issue