mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix GUESTs trying to sign
This commit is contained in:
parent
f2c66a2171
commit
c46ad8d52b
1 changed files with 4 additions and 1 deletions
|
|
@ -842,7 +842,10 @@ static boolean CL_SendJoin(void)
|
|||
uint8_t signature[64];
|
||||
profile_t *localProfile = PR_GetLocalPlayerProfile(i);
|
||||
|
||||
if (cv_lastprofile[0].value == 0) // GUESTS don't have keys
|
||||
char allZero[32];
|
||||
memset(allZero, 0, 32);
|
||||
|
||||
if (cv_lastprofile[i].value == 0) // GUESTS don't have keys
|
||||
{
|
||||
memset(signature, 0, 64);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue