Merge pull request #1597 from GriffinRichards/misc-cleanup

Miscellaneous fixes
This commit is contained in:
GriffinR
2022-01-19 22:17:37 -05:00
committed by GitHub
36 changed files with 152 additions and 176 deletions

View File

@@ -565,7 +565,7 @@ static bool8 ForcedMovement_MuddySlope(void)
{
struct ObjectEvent *playerObjEvent = &gObjectEvents[gPlayerAvatar.objectEventId];
if (playerObjEvent->movementDirection != DIR_NORTH || GetPlayerSpeed() <= 3)
if (playerObjEvent->movementDirection != DIR_NORTH || GetPlayerSpeed() < PLAYER_SPEED_FASTEST)
{
Bike_UpdateBikeCounterSpeed(0);
playerObjEvent->facingDirectionLocked = TRUE;