From 484f3251d1cfa669d951e02a0b685a55925a10f6 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 22 Sep 2022 21:20:37 +0200 Subject: [PATCH] Variable rename for readability --- r5dev/engine/client/client.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/r5dev/engine/client/client.cpp b/r5dev/engine/client/client.cpp index 0b76cdf5..a24c7192 100644 --- a/r5dev/engine/client/client.cpp +++ b/r5dev/engine/client/client.cpp @@ -307,9 +307,9 @@ bool CClient::VProcessStringCmd(CClient* pClient, NET_StringCmd* pMsg) #endif // !GAMEDLL_S0 || !GAMEDLL_S1 ServerPlayer_t* pSlot = &g_ServerPlayer[pClient_Adj->GetUserID()]; double flStartTime = Plat_FloatTime(); - int nCmdQuota = sv_quota_stringCmdsPerSecond->GetInt(); + int nCmdQuotaLimit = sv_quota_stringCmdsPerSecond->GetInt(); - if (!nCmdQuota) + if (!nCmdQuotaLimit) return true; if (flStartTime - pSlot->m_flStringCommandQuotaTimeStart >= 1.0) @@ -319,7 +319,7 @@ bool CClient::VProcessStringCmd(CClient* pClient, NET_StringCmd* pMsg) } ++pSlot->m_nStringCommandQuotaCount; - if (pSlot->m_nStringCommandQuotaCount > nCmdQuota) + if (pSlot->m_nStringCommandQuotaCount > nCmdQuotaLimit) { Warning(eDLL_T::SERVER, "Removing client '%s' from slot '%i' ('%llu' exceeded string command quota!)\n", pClient_Adj->GetNetChan()->GetAddress(), pClient_Adj->GetUserID(), pClient_Adj->GetNucleusID());