We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 135a254 commit 8e50aa8Copy full SHA for 8e50aa8
src/engine/sv_main.cpp
@@ -2909,12 +2909,6 @@ void SV_Frame( bool finalTick )
2909
return;
2910
}
2911
2912
- // let the steam auth server process new connections
2913
- if ( IsPC() && sv.IsMultiplayer() )
2914
- {
2915
- Steam3Server().RunFrame();
2916
- }
2917
-
2918
g_ServerGlobalVariables.frametime = host_state.interval_per_tick;
2919
2920
bool bIsSimulating = SV_IsSimulating();
@@ -2961,5 +2955,11 @@ void SV_Frame( bool finalTick )
2961
2955
2962
2956
// lock string tables
2963
2957
networkStringTableContainerServer->Lock( true );
2958
+
2959
+ // let the steam auth server process new connections
2960
+ if ( IsPC() && sv.IsMultiplayer() )
+ {
+ Steam3Server().RunFrame();
+ }
2964
2965
0 commit comments