Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TheForceEngine/TFE_DarkForces/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1890,7 +1890,7 @@ namespace TFE_DarkForces
// Lower friction means the player will stop sliding sooner.
friction = FRICTION_CLEATS;
}
else if (s_playerSector->secHeight - 1 >= 0) // In water
else if (s_playerSector->secHeight - 1 >= 0 && !s_flyMode) // In water
{
friction = FRICTION_DEFAULT;
s_playerRun = wearingCleats; // Once you get cleats, you move faster through water.
Expand Down
Loading