diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-02-09 13:07:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-09 13:07:59 -0500 |
commit | 9f2ac797d3de444ed509c138f08ba9209c4e1967 (patch) | |
tree | f47a46c56c7b3ecefd454ece378685a67e4883e7 /src/field_effect.c | |
parent | bef2668d8bf92f8d42e2d56b06260380d7175d93 (diff) | |
parent | 0f3e26f9a406caafbad02d39b15137efe5fb3ecd (diff) |
Merge pull request #485 from cbt6/movement
Rename some movement actions and functions
Diffstat (limited to 'src/field_effect.c')
-rw-r--r-- | src/field_effect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/field_effect.c b/src/field_effect.c index 1c6c0f632..b44218dd5 100644 --- a/src/field_effect.c +++ b/src/field_effect.c @@ -1600,7 +1600,7 @@ static bool8 waterfall_2_wait_anim_finish_probably(struct Task * task, struct Ob static bool8 waterfall_3_move_player_probably(struct Task * task, struct ObjectEvent * playerObj) { - ObjectEventSetHeldMovement(playerObj, GetWalkSlowestMovementAction(DIR_NORTH)); + ObjectEventSetHeldMovement(playerObj, GetWalkSlowerMovementAction(DIR_NORTH)); task->data[0]++; return FALSE; } |