Remove magic numbers.

This commit is contained in:
Meowsy
2018-12-17 12:28:11 -05:00
parent 83c3f13655
commit 62c4379a21
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -8648,7 +8648,7 @@ static void atkAE_healpartystatus(void)
u16 species = GetMonData(&party[i], MON_DATA_SPECIES2);
u8 abilityBit = GetMonData(&party[i], MON_DATA_ALT_ABILITY);
if (species != 0 && species != SPECIES_EGG)
if (species != SPECIES_NONE && species != SPECIES_EGG)
{
u8 ability;