diff --git a/addons/sourcemod/scripting/shavit-core.sp b/addons/sourcemod/scripting/shavit-core.sp index e1a64d47..f1c8bfaa 100644 --- a/addons/sourcemod/scripting/shavit-core.sp +++ b/addons/sourcemod/scripting/shavit-core.sp @@ -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;