Remove obsolete code for obfuscation.

This commit is contained in:
Thilo Schulz 2008-03-25 21:59:31 +00:00
parent 99fe055931
commit 11d9608fca

View file

@ -1275,21 +1275,11 @@ CL_SendPureChecksums
=================
*/
void CL_SendPureChecksums( void ) {
const char *pChecksums;
char cMsg[MAX_INFO_VALUE];
int i;
// if we are pure we need to send back a command with our referenced pk3 checksums
pChecksums = FS_ReferencedPakPureChecksums();
Com_sprintf(cMsg, sizeof(cMsg), "cp %d %s", cl.serverId, FS_ReferencedPakPureChecksums());
// "cp"
// "Yf"
Com_sprintf(cMsg, sizeof(cMsg), "Yf ");
Q_strcat(cMsg, sizeof(cMsg), va("%d ", cl.serverId) );
Q_strcat(cMsg, sizeof(cMsg), pChecksums);
for (i = 0; i < 2; i++) {
cMsg[i] += 10;
}
CL_AddReliableCommand( cMsg );
}