summaryrefslogtreecommitdiff
path: root/src/moves.c
diff options
context:
space:
mode:
authorAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-03-09 22:19:20 -0500
committerAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-03-10 22:33:13 -0500
commit458001dbbdb9c11a129cfe4286b536cfefc349f0 (patch)
tree4a071af20f73201e9f3e25afc8713c10dc9b8e6e /src/moves.c
parent951b01114ab85800db8ed7f4a1034e2bd303e712 (diff)
Decomped IsMoveUsable()
Diffstat (limited to 'src/moves.c')
-rw-r--r--src/moves.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/moves.c b/src/moves.c
index 8a2606f..bd5ccfa 100644
--- a/src/moves.c
+++ b/src/moves.c
@@ -297,17 +297,17 @@ u8 *GetMoveUseText(u16 moveID)
return gMovesData[moveID].useText;
}
-u8 GetMoveAffectedByMagicCoat(u16 moveID)
+bool8 GetMoveAffectedByMagicCoat(u16 moveID)
{
return gMovesData[moveID].affectedByMagicCoat;
}
-u8 GetMoveTargetsUser(u16 moveID)
+bool8 GetMoveTargetsUser(u16 moveID)
{
return gMovesData[moveID].targetsUser;
}
-u8 GetMoveAffectedByMuzzled(u16 moveID)
+bool8 GetMoveAffectedByMuzzled(u16 moveID)
{
return gMovesData[moveID].affectedByMuzzled;
}