diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-12-12 23:57:25 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-12-12 23:57:25 -0500 |
commit | b1197ac2da952ca289d9e5ca37b49fd05207f65b (patch) | |
tree | cde186d0ebf6d047c233deb9bf72b6e40e7abb7a /src | |
parent | 81d95b9325ed2526ce638744408f453a8169abb4 (diff) |
UBFIX for if_status_not_in_party
Diffstat (limited to 'src')
-rw-r--r-- | src/battle_ai_script_commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battle_ai_script_commands.c b/src/battle_ai_script_commands.c index 651f9da2a..952868e11 100644 --- a/src/battle_ai_script_commands.c +++ b/src/battle_ai_script_commands.c @@ -1614,7 +1614,7 @@ static void Cmd_if_status_not_in_party(void) if (species != SPECIES_NONE && species != SPECIES_EGG && hp != 0 && status == statusToCompareTo) { gAIScriptPtr += 10; - #ifdef BUGFIX + #ifdef UBFIX return; #endif } |