Fix no return in isbattlergrounded (#3328)

This commit is contained in:
DizzyEggg 2023-09-21 15:24:26 +02:00 committed by GitHub
parent d4217739e6
commit 5b498e968f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)