diff --git a/code/game/g_client.c b/code/game/g_client.c
index 0b0b89d..791506c 100644
a
|
b
|
void ClientUserinfoChanged( int clientNum ) { |
1229 | 1229 | #ifdef SMOKINGUNS |
1230 | 1230 | char version[MAX_INFO_STRING]; |
1231 | 1231 | char md5[MAX_INFO_STRING]; |
| 1232 | char guid[MAX_INFO_STRING]; |
1232 | 1233 | #endif |
1233 | 1234 | |
1234 | 1235 | ent = g_entities + clientNum; |
… |
… |
void ClientUserinfoChanged( int clientNum ) { |
1552 | 1553 | #else |
1553 | 1554 | strcpy(version, Info_ValueForKey( userinfo, "cl_version" )); |
1554 | 1555 | strcpy(md5, Info_ValueForKey( userinfo, "cl_md5" )); |
| 1556 | strcpy(guid, Info_ValueForKey( userinfo, "cl_guid" )); |
1555 | 1557 | #endif |
1556 | 1558 | strcpy(redTeam, Info_ValueForKey( userinfo, "g_redteam" )); |
1557 | 1559 | strcpy(blueTeam, Info_ValueForKey( userinfo, "g_blueteam" )); |
… |
… |
void ClientUserinfoChanged( int clientNum ) { |
1579 | 1581 | client->pers.netname, client->sess.sessionTeam, model, headModel, redTeam, blueTeam, c1, c2, |
1580 | 1582 | client->pers.maxHealth, client->sess.wins, client->sess.losses, teamTask, teamLeader); |
1581 | 1583 | #else |
1582 | | s = va("\\n\\%s\\t\\%i\\model\\%s\\g_redteam\\%s\\g_blueteam\\%s\\hc\\%i\\w\\%i\\l\\%i\\tt\\%d\\tl\\%d\\v\\%s\\md5\\%s", |
| 1584 | s = va("\\n\\%s\\t\\%i\\model\\%s\\g_redteam\\%s\\g_blueteam\\%s\\hc\\%i\\w\\%i\\l\\%i\\tt\\%d\\tl\\%d\\v\\%s\\md5\\%s\\guid\\%s", |
1583 | 1585 | client->pers.netname, client->sess.sessionTeam, model, redTeam, blueTeam, |
1584 | | client->pers.maxHealth, client->sess.wins, client->sess.losses, teamTask, teamLeader, version, md5); |
| 1586 | client->pers.maxHealth, client->sess.wins, client->sess.losses, teamTask, teamLeader, version, md5, guid); |
1585 | 1587 | #endif |
1586 | 1588 | } |
1587 | 1589 | |