File tree 1 file changed +0
-10
lines changed
1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -827,23 +827,13 @@ float CServerGameDLL::GetTickInterval( void ) const
827
827
{
828
828
float tickinterval = DEFAULT_TICK_INTERVAL;
829
829
830
- // =============================================================================
831
- // HPE_BEGIN:
832
- // [Forrest] For Counter-Strike, set default tick rate of 66 and removed -tickrate command line parameter.
833
- // =============================================================================
834
- // Ignoring this for now, server ops are abusing it
835
- #if !defined( TF_DLL ) && !defined( CSTRIKE_DLL ) && !defined( DOD_DLL )
836
- // =============================================================================
837
- // HPE_END
838
- // =============================================================================
839
830
// override if tick rate specified in command line
840
831
if ( CommandLine ()->CheckParm ( " -tickrate" ) )
841
832
{
842
833
float tickrate = CommandLine ()->ParmValue ( " -tickrate" , 0 );
843
834
if ( tickrate > 10 )
844
835
tickinterval = 1 .0f / tickrate;
845
836
}
846
- #endif
847
837
848
838
return tickinterval;
849
839
}
You can’t perform that action at this time.
0 commit comments