Merge pull request #1733 from WhenGryphonsFly/clean__pokeruspartysize

Use PARTY_SIZE for Pokerus Nurse Conversation
This commit is contained in:
GriffinR 2022-08-10 20:45:57 -04:00 committed by GitHub
commit cd5a03d4aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1412,7 +1412,7 @@ bool8 ScriptCheckFreePokemonStorageSpace(void)
bool8 IsPokerusInParty(void)
{
if (!CheckPartyPokerus(gPlayerParty, 0x3f))
if (!CheckPartyPokerus(gPlayerParty, (1 << PARTY_SIZE) - 1))
return FALSE;
return TRUE;