From e78997fdfd963ca9b382a949d71056ccaef8f0eb Mon Sep 17 00:00:00 2001 From: peter1138 Date: Thu, 19 Jan 2006 17:50:40 +0000 Subject: (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. --- misc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'misc.c') diff --git a/misc.c b/misc.c index 37256f115..61819cf5d 100644 --- a/misc.c +++ b/misc.c @@ -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 */ } -- cgit v1.2.3-54-g00ecf