diff options
Diffstat (limited to 'source/mvd_parse.c')
-rw-r--r-- | source/mvd_parse.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source/mvd_parse.c b/source/mvd_parse.c index 2f6dd83..d037b64 100644 --- a/source/mvd_parse.c +++ b/source/mvd_parse.c @@ -1112,7 +1112,7 @@ static void MVD_ParseServerData( mvd_t *mvd, int extrabits ) { if( !mvd->state ) { mvd_t *cur; - // sort this one into the list of ready channels + // sort this one into the list of active channels LIST_FOR_EACH( mvd_t, cur, &mvd_channel_list, entry ) { if( cur->id > mvd->id ) { break; @@ -1121,8 +1121,7 @@ static void MVD_ParseServerData( mvd_t *mvd, int extrabits ) { List_Append( &cur->entry, &mvd->entry ); mvd->state = MVD_WAITING; - // for local client - MVD_CheckActive( mvd ); + mvd_dirty = qtrue; } // case all UDP clients to reconnect |