Aligning.

This commit is contained in:
IcePixelx 2021-12-26 04:14:28 +01:00
parent 0ca5b5ae35
commit c90d3184ea

View File

@ -133,11 +133,13 @@ void NET_DisconnectClient(CClient* pClient, int nIndex, const char* szReason, ui
{ {
return; return;
} }
if (std::strlen(szReason) == NULL) // Is reason null? if (std::strlen(szReason) == NULL) // Is reason null?
{ {
return; return;
} }
if (!pClient->GetNetChan())
if (!pClient->GetNetChan()) // NC even existent?
{ {
return; return;
} }