Skip to content

Commit

Permalink
Fix no return in isbattlergrounded (#3328)
Browse files Browse the repository at this point in the history
  • Loading branch information
DizzyEggg authored Sep 21, 2023
1 parent d421773 commit 5b498e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/battle_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -8313,7 +8313,7 @@ static bool32 IsBattlerGrounded2(u8 battler, bool32 considerInverse)

bool32 IsBattlerGrounded(u8 battler)
{
IsBattlerGrounded2(battler, FALSE);
return IsBattlerGrounded2(battler, FALSE);
}

bool32 IsBattlerAlive(u8 battler)
Expand Down

0 comments on commit 5b498e9

Please sign in to comment.