(svn r3409) - Change the server advertisement interval to use the frame counter instead

of game days. This allows a paused server to continue to advertise itself.
  This also fixes advertising for games that start before 1922.
This commit is contained in:
peter1138
2006-01-19 17:50:40 +00:00
parent 6132d15df9
commit c56ae910f0
4 changed files with 24 additions and 15 deletions

3
misc.c
View File

@@ -82,7 +82,8 @@ void SetDate(uint date)
_cur_year = ymd.year;
_cur_month = ymd.month;
#ifdef ENABLE_NETWORK
_network_last_advertise_date = 0;
_network_last_advertise_frame = 0;
_network_need_advertise = true;
#endif /* ENABLE_NETWORK */
}