diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2021-12-13 23:22:03 -0500 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2021-12-14 22:54:03 -0500 |
commit | cd9a8c5a384124999e15626d9623b48f2687deba (patch) | |
tree | 096eef1adbb2781332d71cce238d0d2614b9feee /src/dungeon_util_1.c | |
parent | 087405b9d975b447ef7b17afd1e73e449cc7881b (diff) |
Decomped CanTarget()
Diffstat (limited to 'src/dungeon_util_1.c')
-rw-r--r-- | src/dungeon_util_1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dungeon_util_1.c b/src/dungeon_util_1.c index 32cc3ff..034bab6 100644 --- a/src/dungeon_util_1.c +++ b/src/dungeon_util_1.c @@ -128,7 +128,7 @@ bool8 IsMovingClient(struct DungeonEntity *pokemon) switch (pokemonData->clientType) { case CLIENT_TYPE_CLIENT: - case CLIENT_TYPE_DONT_MOVE: + case 0x3: case 0x5: case 0x6: case 0x7: @@ -161,7 +161,7 @@ bool8 IsMovingClient(struct DungeonEntity *pokemon) return TRUE; case CLIENT_TYPE_NONE: case 0x2: - case 0x4: + case CLIENT_TYPE_DONT_MOVE: case 0xA: case 0xB: case 0xC: |