diff --git a/source/cl_parse.c b/source/cl_parse.c index 0c2a367..b0b612b 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -310,7 +310,6 @@ Model_NextDownload (void) // done with modellist, request first of static signon messages MSG_WriteByte (&cls.netchan.message, clc_stringcmd); -// MSG_WriteString (&cls.netchan.message, va("prespawn %i 0 %i", cl.servercount, cl.worldmodel->checksum2)); MSG_WriteString (&cls.netchan.message, va (prespawn_name, cl.servercount, cl.worldmodel->checksum2)); @@ -355,7 +354,6 @@ Sound_NextDownload (void) cl_h_playerindex = -1; cl_gib1index = cl_gib2index = cl_gib3index = -1; MSG_WriteByte (&cls.netchan.message, clc_stringcmd); -// MSG_WriteString (&cls.netchan.message, va("modellist %i 0", cl.servercount)); MSG_WriteString (&cls.netchan.message, va (modellist_name, cl.servercount, 0)); } @@ -700,7 +698,6 @@ CL_ParseServerData (void) // ask for the sound list next memset (cl.sound_name, 0, sizeof (cl.sound_name)); MSG_WriteByte (&cls.netchan.message, clc_stringcmd); -// MSG_WriteString (&cls.netchan.message, va("soundlist %i 0", cl.servercount)); MSG_WriteString (&cls.netchan.message, va (soundlist_name, cl.servercount, 0)); @@ -757,7 +754,6 @@ CL_ParseSoundlist (void) if (n) { MSG_WriteByte (&cls.netchan.message, clc_stringcmd); -// MSG_WriteString (&cls.netchan.message, va("soundlist %i %i", cl.servercount, n)); MSG_WriteString (&cls.netchan.message, va (soundlist_name, cl.servercount, n)); return; @@ -813,7 +809,6 @@ CL_ParseModellist (void) if (n) { MSG_WriteByte (&cls.netchan.message, clc_stringcmd); -// MSG_WriteString (&cls.netchan.message, va("modellist %i %i", cl.servercount, n)); MSG_WriteString (&cls.netchan.message, va (modellist_name, cl.servercount, n)); return;