mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
Improve Fateful encounter check message
This commit is contained in:
parent
a6ca9c8bf1
commit
4a42ac68ba
1 changed files with 1 additions and 1 deletions
|
@ -657,7 +657,7 @@ namespace PKHeX
|
||||||
{
|
{
|
||||||
if (EncounterType == typeof(EncounterStatic) && pk6.Species == 386) // Deoxys Matched @ Sky Pillar
|
if (EncounterType == typeof(EncounterStatic) && pk6.Species == 386) // Deoxys Matched @ Sky Pillar
|
||||||
return new LegalityCheck();
|
return new LegalityCheck();
|
||||||
return new LegalityCheck(Severity.Invalid, "Fateful Encounter mismatch.");
|
return new LegalityCheck(Severity.Invalid, "Fateful Encounter should " + (pk6.FatefulEncounter ? "not " : "") + "be checked.");
|
||||||
}
|
}
|
||||||
|
|
||||||
return new LegalityCheck();
|
return new LegalityCheck();
|
||||||
|
|
Loading…
Reference in a new issue