diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-12-28 21:34:16 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 21:34:16 -0600 |
commit | 6512ebff67e163a5a6c0f5e19847e2a4dda19ad1 (patch) | |
tree | 028f81d66b2cd990d163062280e558a080b30071 /src/moves.c | |
parent | 7a1956f51d3bbba5f49f97526b79efafa85792bb (diff) | |
parent | f0ef6ae481ec2cc655f1606f074de38ef26276c4 (diff) |
Merge pull request #90 from pret/pokemon_mail_data
Pokemon mail data and some decomp
Diffstat (limited to 'src/moves.c')
-rw-r--r-- | src/moves.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/moves.c b/src/moves.c index 0f59f0b..e5998db 100644 --- a/src/moves.c +++ b/src/moves.c @@ -246,7 +246,7 @@ u8 GetMoveHitCount(struct PokemonMove *move) return gMovesData[move->moveID].hitCount; } -s16 GetMovePower(struct PokemonMove *move) +s32 GetMovePower(struct PokemonMove *move) { return gMovesData[move->moveID].power; } |