Removed unneeded function parameter.

This commit is contained in:
Greyscale 2009-06-23 14:30:45 -07:00
parent d9843c74fa
commit 1be37f3d1f

View File

@ -47,7 +47,7 @@ JumpBoostOnClientJumpPost(client)
vecVelocity[2] *= heightmultiplier; vecVelocity[2] *= heightmultiplier;
// Protect against bunnyhop. // Protect against bunnyhop.
JumpBoostBHopProtect(vecVelocity, distancemultiplier); JumpBoostBHopProtect(vecVelocity);
// Set new velocity. // Set new velocity.
ToolsClientVelocity(client, vecVelocity, true, false); ToolsClientVelocity(client, vecVelocity, true, false);
@ -60,7 +60,7 @@ JumpBoostOnClientJumpPost(client)
* @param vecVelocity The velocity of the client jumping. * @param vecVelocity The velocity of the client jumping.
* @param distancemultiplier The distance multiplier used on this jump. * @param distancemultiplier The distance multiplier used on this jump.
*/ */
stock JumpBoostBHopProtect(Float:vecVelocity[], Float:distancemultiplier) stock JumpBoostBHopProtect(Float:vecVelocity[])
{ {
// If bunnyhop protection is disabled, then stop. // If bunnyhop protection is disabled, then stop.
new bool:bunnyhopprotect = GetConVarBool(g_hCvarsList[CVAR_JUMPBOOST_BHOP_PROTECT]); new bool:bunnyhopprotect = GetConVarBool(g_hCvarsList[CVAR_JUMPBOOST_BHOP_PROTECT]);