summaryrefslogtreecommitdiff
path: root/include/constants/move.h
diff options
context:
space:
mode:
authorAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-02-28 21:17:15 -0500
committerAnonymousRandomPerson <chenghanngan.us@gmail.com>2022-03-10 22:32:17 -0500
commit70ce2c1642376305f26ad0eaebad26d7d3fe9ac9 (patch)
tree1862acd3b246edb9e5b3491dbe42a04beaf8880f /include/constants/move.h
parent07285e7e82db008b1f322879f3b22c8eb437a8de (diff)
Decomped LastUsedMoveOutOfPP()
Diffstat (limited to 'include/constants/move.h')
-rw-r--r--include/constants/move.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/constants/move.h b/include/constants/move.h
index eb78219..e6f4e70 100644
--- a/include/constants/move.h
+++ b/include/constants/move.h
@@ -3,7 +3,7 @@
#define STRUGGLE_MOVE_INDEX 4
-enum MoveFlags
+enum MoveFlag
{
MOVE_FLAG_EXISTS = 1 << 0,
MOVE_FLAG_LINKED = 1 << 1, // This move is linked with the previous move in the Pokémon's moveset.
@@ -13,7 +13,7 @@ enum MoveFlags
MOVE_FLAG_DISABLED = 1 << 5 // Disabled by an effect like Taunt.
};
-enum MoveFlags2
+enum MoveFlag2
{
MOVE_FLAG_SEALED = 1 << 0,
MOVE_FLAG_TEMPORARY = 1 << 3, // Used for moves copied by Mimic.