diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-03-30 20:33:31 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-03-30 20:33:31 -0400 |
commit | f00b44699c49550ae2a56bf64e10e7f2d841e839 (patch) | |
tree | 605daea56a0e6d98628bdec329da986e845c2131 /include | |
parent | 35b68c68ee565b9b232252e4f37ea082e9310560 (diff) |
Fix movement types; fix some math ops
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/event_object_movement.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/include/constants/event_object_movement.h b/include/constants/event_object_movement.h index b029b47c4..008d3a117 100644 --- a/include/constants/event_object_movement.h +++ b/include/constants/event_object_movement.h @@ -70,19 +70,19 @@ #define MOVEMENT_TYPE_WALK_IN_PLACE_UP 0x41 #define MOVEMENT_TYPE_WALK_IN_PLACE_LEFT 0x42 #define MOVEMENT_TYPE_WALK_IN_PLACE_RIGHT 0x43 -#define MOVEMENT_TYPE_JOG_IN_PLACE_DOWN 0x44 -#define MOVEMENT_TYPE_JOG_IN_PLACE_UP 0x45 -#define MOVEMENT_TYPE_JOG_IN_PLACE_LEFT 0x46 -#define MOVEMENT_TYPE_JOG_IN_PLACE_RIGHT 0x47 -#define MOVEMENT_TYPE_RUN_IN_PLACE_DOWN 0x48 -#define MOVEMENT_TYPE_RUN_IN_PLACE_UP 0x49 -#define MOVEMENT_TYPE_RUN_IN_PLACE_LEFT 0x4A -#define MOVEMENT_TYPE_RUN_IN_PLACE_RIGHT 0x4B +#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_DOWN 0x44 +#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_UP 0x45 +#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_LEFT 0x46 +#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_RIGHT 0x47 +#define MOVEMENT_TYPE_JOG_IN_PLACE_DOWN 0x48 +#define MOVEMENT_TYPE_JOG_IN_PLACE_UP 0x49 +#define MOVEMENT_TYPE_JOG_IN_PLACE_LEFT 0x4A +#define MOVEMENT_TYPE_JOG_IN_PLACE_RIGHT 0x4B #define MOVEMENT_TYPE_INVISIBLE 0x4C -#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_DOWN 0x4D -#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_UP 0x4E -#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_LEFT 0x4F -#define MOVEMENT_TYPE_WALK_SLOWLY_IN_PLACE_RIGHT 0x50 +#define MOVEMENT_TYPE_VS_SEEKER_4D 0x4D +#define MOVEMENT_TYPE_VS_SEEKER_4E 0x4E +#define MOVEMENT_TYPE_VS_SEEKER_4F 0x4F +#define MOVEMENT_TYPE_WANDER_AROUND_SLOWEST 0x50 #define MOVEMENT_ACTION_FACE_DOWN 0x0 #define MOVEMENT_ACTION_FACE_UP 0x1 |