diff --git a/rehlds/engine/sv_user.cpp b/rehlds/engine/sv_user.cpp index 18bb80f..93b1d9a 100644 --- a/rehlds/engine/sv_user.cpp +++ b/rehlds/engine/sv_user.cpp @@ -94,7 +94,7 @@ void SV_ParseConsistencyResponse(client_t *pSenderClient) Q_memset(nullbuffer, 0, sizeof(nullbuffer)); int value = MSG_ReadShort(); - if (sv_invalid_length.value == 1) + if (sv_invalid_length.value) { if (value <= 0 || !SZ_HasSomethingToRead(&net_message, value)) { @@ -1575,7 +1575,7 @@ void SV_ParseMove(client_t *pSenderClient) mlen = MSG_ReadByte(); cbchecksum = MSG_ReadByte(); - if (sv_invalid_length.value == 1) + if (sv_invalid_length.value) { if (mlen <= 0 || !SZ_HasSpaceToRead(&net_message, mlen)) { @@ -1793,7 +1793,7 @@ void EXT_FUNC SV_HandleClientMessage_api(IGameClient* client, uint8 opcode) { static_assert(REHLDS_API_VERSION_MAJOR <= 3, "Bump major API DETECTED!! You shall rework the hookchain, make function returnable"); msg_badread = 1; - if (sv_msg_badread.value == 1) + if (sv_msg_badread.value) { Con_Printf("SV_ReadClientMessage: unknown command char (%d)\n", opcode); } @@ -1815,7 +1815,7 @@ void EXT_FUNC SV_HandleClientMessage_api(IGameClient* client, uint8 opcode) { #ifdef REHLDS_FIXES if (msg_badread) { - if (sv_msg_badread.value == 1) + if (sv_msg_badread.value) { Con_Printf("SV_ReadClientMessage: badread on %s, opcode %s\n", name, sv_clcfuncs[opcode].pszname); } @@ -1847,7 +1847,7 @@ void SV_ExecuteClientMessage(client_t *cl) if (msg_badread) { #ifdef REHLDS_FIXES - if (sv_msg_badread.value == 1) + if (sv_msg_badread.value) { Con_Printf("SV_ReadClientMessage: badread on %s\n", host_client->name); } @@ -1855,7 +1855,7 @@ void SV_ExecuteClientMessage(client_t *cl) if (host_client->active) SV_ClientPrintf("Badread\n"); #else // REHLDS_FIXES - if (sv_msg_badread.value == 1) + if (sv_msg_badread.value) { Con_Printf("SV_ReadClientMessage: badread\n"); }