Better un-pure client error message

This commit is contained in:
Tim Angus 2025-10-06 20:05:19 +01:00
parent a6f949c8a6
commit 8c19f7850d

View File

@ -1374,7 +1374,10 @@ static void SV_VerifyPaks_f( client_t *cl ) {
cl->lastSnapshotTime = 0;
cl->state = CS_ACTIVE;
SV_SendClientSnapshot( cl );
SV_DropClient( cl, "Unpure client detected. Invalid .PK3 files referenced!" );
SV_DropClient( cl, "Unpure Client. "
"You may need to enable in-game downloads "
"to connect to this server (set "
"cl_allowDownload 1)" );
}
}
}