summaryrefslogtreecommitdiff
path: root/src/moves.c
diff options
context:
space:
mode:
authorAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-02-13 23:17:46 -0500
committerAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-02-13 23:17:46 -0500
commitece475a4804a64790cfa86dfa0ba577a732adee8 (patch)
tree4237c0ab086005ea05539b8de7c10b867eec43db /src/moves.c
parent2a2a0805b481b8425b4d1047d868fb1159993e6c (diff)
Renamed some boolean move functions
Diffstat (limited to 'src/moves.c')
-rw-r--r--src/moves.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/moves.c b/src/moves.c
index b7c8ad8..0874f00 100644
--- a/src/moves.c
+++ b/src/moves.c
@@ -271,12 +271,12 @@ u8 GetMoveCriticalHitChance(struct PokemonMove *move)
return gMovesData[move->moveID].criticalHitChance;
}
-bool8 GetMoveCannotHitFrozen(struct PokemonMove *move)
+bool8 MoveCannotHitFrozen(struct PokemonMove *move)
{
return gMovesData[move->moveID].cannotHitFrozen;
}
-bool8 GetMoveDealsDirectDamage(struct PokemonMove *move)
+bool8 MoveDealsDirectDamage(struct PokemonMove *move)
{
return gMovesData[move->moveID].dealsDirectDamage;
}