mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-15 11:40:55 -05:00
Checks for memory 49: Was able to remember
This commit is contained in:
parent
816ec2537d
commit
099f2104f7
|
|
@ -672,6 +672,10 @@ private LegalityCheck verifyCommonMemory(int handler)
|
|||
{
|
||||
return new LegalityCheck(Severity.Invalid, resultPrefix + "Memory: Species cannot know this move.");
|
||||
}
|
||||
if (m == 49 && (t == 0 || !Legal.getCanRelearnMove(pk6, t, 1))) // {0} was able to remember {2} at {1}'s instruction. {4} that {3}.
|
||||
{
|
||||
return new LegalityCheck(Severity.Invalid, resultPrefix + "Memory: Species cannot relearn this move.");
|
||||
}
|
||||
return new LegalityCheck(Severity.Valid, resultPrefix + "Memory is valid.");
|
||||
}
|
||||
private LegalityCheck verifyOTMemory()
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user