remove unused doublestep +ds/-ds command

This commit is contained in:
rtldg 2021-09-21 04:38:51 +00:00
parent f23bd4b96c
commit 2d11d94237

View File

@ -51,7 +51,6 @@ enum struct playertimer_t
float fLastAngle;
int iTotalMeasures;
int iGoodGains;
bool bDoubleSteps;
float fStrafeWarning;
bool bPracticeMode;
int iSHSWCombination;
@ -1231,13 +1230,6 @@ public Action Command_AutoBhop(int client, int args)
return Plugin_Handled;
}
public Action Command_DoubleStep(int client, const char[] command, int args)
{
gA_Timers[client].bDoubleSteps = (command[0] == '+');
return Plugin_Handled;
}
public Action Command_Style(int client, int args)
{
if(!IsValidClient(client))
@ -2647,7 +2639,6 @@ public void OnClientPutInServer(int client)
}
gA_Timers[client].bAuto = true;
gA_Timers[client].bDoubleSteps = false;
gA_Timers[client].fStrafeWarning = 0.0;
gA_Timers[client].bPracticeMode = false;
gA_Timers[client].iSHSWCombination = -1;