Skip to content

Commit

Permalink
Merge pull request #264 from Tiagoquix/patch-1
Browse files Browse the repository at this point in the history
Remove mp_idlemaxtime from ConVars.sp
  • Loading branch information
safalin1 authored May 24, 2024
2 parents b2d1d9f + 8502704 commit f64c79a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/scripting/ConVars.sp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ void ResetConVars()
ResetConVar(FindConVar("mp_waitingforplayers_time"));
ResetConVar(FindConVar("mp_disable_respawn_times"));
ResetConVar(FindConVar("mp_respawnwavetime"));
ResetConVar(FindConVar("mp_idlemaxtime"));

// TeamFortress ConVars
ResetConVar(FindConVar("tf_avoidteammates_pushaway"));
Expand All @@ -106,7 +105,6 @@ void PrepareConVars()
SetConVarInt(FindConVar("mp_waitingforplayers_time"), g_hConVarWaitingForPlayersTime.IntValue);
SetConVarInt(FindConVar("mp_disable_respawn_times"), 0);
SetConVarInt(FindConVar("mp_respawnwavetime"), 9999);
SetConVarInt(FindConVar("mp_idlemaxtime"), 8);
SetConVarInt(FindConVar("tf_avoidteammates_pushaway"), 0);
SetConVarFloat(FindConVar("tf_max_health_boost"), 1.0);
SetConVarFloat(FindConVar("tf_airblast_cray_ground_minz"), 268.3281572999747);
Expand Down Expand Up @@ -147,4 +145,4 @@ public void OnWaitingForPlayersTimeChanged(Handle cvar, const char[] oldVal, con
public bool Config_BonusPointsEnabled()
{
return g_hConVarPluginBonusPoints.BoolValue;
}
}

0 comments on commit f64c79a

Please sign in to comment.