From 4645fd2166a5aafc3f4d25f8b6c006ae3fba39f0 Mon Sep 17 00:00:00 2001 From: pierow Date: Fri, 12 Feb 2021 07:31:47 -0500 Subject: [PATCH] comment clean up --- main/source/pm_shared/pm_shared.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/main/source/pm_shared/pm_shared.cpp b/main/source/pm_shared/pm_shared.cpp index 4b3c47c9..3acf72ad 100644 --- a/main/source/pm_shared/pm_shared.cpp +++ b/main/source/pm_shared/pm_shared.cpp @@ -6409,10 +6409,6 @@ void PM_Jetpack() } else { - //pmove->velocity[0] += (theWishVelocity[0] / pmove->clientmaxspeed) * (theTimePassed * theWeightScalar*kJetpackForce); - //pmove->velocity[1] += (theWishVelocity[1] / pmove->clientmaxspeed) * (theTimePassed * theWeightScalar*kJetpackForce); - //pmove->velocity[2] += theTimePassed*theWeightScalar*kJetpackForce; - pmove->velocity[0] += (theWishVelocity[0] / pmove->clientmaxspeed) * (theTimePassed * kJetpackForce); pmove->velocity[1] += (theWishVelocity[1] / pmove->clientmaxspeed) * (theTimePassed * kJetpackForce); pmove->velocity[2] += theTimePassed*theWeightScalar*kJetpackForce;