Skip to content

Commit

Permalink
Use the real checksum for paks. This allows people to connect to serv…
Browse files Browse the repository at this point in the history
…ers again
  • Loading branch information
DolceTriade committed Jul 8, 2014
1 parent 7b303dc commit 8212d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/qcommon/files.cpp
Expand Up @@ -531,7 +531,7 @@ const char* FS_LoadedPaks()
continue;
if (info[0])
Q_strcat(info, sizeof(info), " ");
Q_strcat(info, sizeof(info), FS::MakePakName(x.name, x.version, x.checksum).c_str());
Q_strcat(info, sizeof(info), FS::MakePakName(x.name, x.version, x.realChecksum).c_str());
}
return info;
}
Expand Down

0 comments on commit 8212d45

Please sign in to comment.