diff options
Diffstat (limited to 'src/bike.c')
-rw-r--r-- | src/bike.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bike.c b/src/bike.c index d08a5fe82..e31fd27a4 100644 --- a/src/bike.c +++ b/src/bike.c @@ -374,7 +374,7 @@ s16 GetPlayerSpeed(void) return exp[gPlayerAvatar.bikeFrameCounter]; else if (gPlayerAvatar.flags & PLAYER_AVATAR_FLAG_ACRO_BIKE) return 3; - else if (gPlayerAvatar.flags & (PLAYER_AVATAR_FLAG_SURFING | PLAYER_AVATAR_FLAG_WATERING)) + else if (gPlayerAvatar.flags & (PLAYER_AVATAR_FLAG_SURFING | PLAYER_AVATAR_FLAG_DASH)) return 2; else return 1; |