From 6879f1b328169954743b662ad3097286f35a5e83 Mon Sep 17 00:00:00 2001 From: Azaezel Date: Thu, 3 Oct 2013 04:35:42 -0500 Subject: [PATCH] re-enables boyancy as per: http://www.garagegames.com/community/blogs/view/22403#comments --- Engine/source/T3D/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/T3D/player.cpp b/Engine/source/T3D/player.cpp index 18a4492ad..9937f3859 100644 --- a/Engine/source/T3D/player.cpp +++ b/Engine/source/T3D/player.cpp @@ -3122,7 +3122,7 @@ void Player::updateMove(const Move* move) if ( currHeight + mVelocity.z * TickSec * C > mLiquidHeight ) buoyancyForce *= M; - //mVelocity.z -= buoyancyForce; + mVelocity.z -= buoyancyForce; } }