diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-02-13 22:02:17 -0500 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-02-13 22:02:17 -0500 |
commit | a02346be01efa13b6d969a89be642e3450f7ca35 (patch) | |
tree | fdd3798a122f814186b404e6e18f9af320ed76b1 /src/moves.c | |
parent | 9939c543ce7a8cbf7abb85d3125b5e6d95204433 (diff) |
Decomped FindMoveTarget()
Diffstat (limited to 'src/moves.c')
-rw-r--r-- | src/moves.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/moves.c b/src/moves.c index 54927d8..2a0703b 100644 --- a/src/moves.c +++ b/src/moves.c @@ -271,12 +271,12 @@ u8 GetMoveCriticalHitChance(struct PokemonMove *move) return gMovesData[move->moveID].criticalHitChance; } -u8 GetMoveCannotHitFrozen(struct PokemonMove *move) +bool8 GetMoveCannotHitFrozen(struct PokemonMove *move) { return gMovesData[move->moveID].cannotHitFrozen; } -u8 GetMoveDealsDirectDamage(struct PokemonMove *move) +bool8 GetMoveDealsDirectDamage(struct PokemonMove *move) { return gMovesData[move->moveID].dealsDirectDamage; } |