Skip to content

Commit

Permalink
Make cv_advertise no by default, do not save
Browse files Browse the repository at this point in the history
  • Loading branch information
jameds committed Sep 13, 2020
1 parent 0cc38dc commit c93d259
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mserv.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ consvar_t cv_server_contact = {"server_contact", "", CV_SAVE|CV_CALL|CV_NOINIT,

consvar_t cv_masterserver_update_rate = {"masterserver_update_rate", "15", CV_SAVE|CV_CALL|CV_NOINIT, masterserver_update_rate_cons_t, MasterClient_Ticker, 0, NULL, NULL, 0, 0, NULL};

consvar_t cv_advertise = {"advertise", "Yes", CV_SAVE|CV_NETVAR|CV_CALL|CV_NOINIT, CV_YesNo, Advertise_OnChange, 0, NULL, NULL, 0, 0, NULL};
consvar_t cv_advertise = {"advertise", "No", CV_NETVAR|CV_CALL|CV_NOINIT, CV_YesNo, Advertise_OnChange, 0, NULL, NULL, 0, 0, NULL};

#if defined (MASTERSERVER) && defined (HAVE_THREADS)
int ms_QueryId;
Expand Down

0 comments on commit c93d259

Please sign in to comment.