diff options
author | Diegoisawesome <diego@domoreaweso.me> | 2018-12-18 19:31:04 -0600 |
---|---|---|
committer | Diegoisawesome <diego@domoreaweso.me> | 2018-12-18 19:54:27 -0600 |
commit | 2592803460fcaeb2dd804080eb8770c85613773e (patch) | |
tree | ba53079591d9629dcf4672b544f13651f346d425 /src/battle_script_commands.c | |
parent | cd994f4935b9de81383d8e0a17d790414652a4d6 (diff) | |
parent | b2ac3b6d6f06ed4a2d64af90e97796c66bcdeb5f (diff) |
Merge branch 'master' of github.com:pret/pokeemerald into trade
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 475b16c98..f1e7143dc 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -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; |