Skip to content

Commit

Permalink
default sv_serverTimeReset to 0 to prevent a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
krazykaze81 committed Sep 30, 2022
1 parent ce4fbd9 commit af99a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/sv_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -989,7 +989,7 @@ void SV_Init( void ) {
sv_checkVersion = Cvar_Get("sv_checkVersion", "15", CVAR_ROM);

// ET Legacy port reset svs.time on map load to fix knockback bug
sv_serverTimeReset = Cvar_Get("sv_serverTimeReset", "1", CVAR_ARCHIVE); // default to 1
sv_serverTimeReset = Cvar_Get("sv_serverTimeReset", "0", CVAR_ARCHIVE); // default to 0 - 1 is causing a bug on map change

// End RtcwPro

Expand Down

0 comments on commit af99a90

Please sign in to comment.