From 7a48c5ab6e9967615cbe6474015d64ecddb3580c Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 21 Sep 2022 00:38:46 +0200 Subject: [PATCH] Use shifted pointer --- r5dev/engine/client/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/engine/client/client.cpp b/r5dev/engine/client/client.cpp index f5a1f56e..ccfdf3ae 100644 --- a/r5dev/engine/client/client.cpp +++ b/r5dev/engine/client/client.cpp @@ -316,7 +316,7 @@ bool CClient::VProcessStringCmd(CClient* pClient, NET_StringCmd* pMsg) if (pSlot->m_nStringCommandQuotaCount > nCmdQuota) { Warning(eDLL_T::SERVER, "Removing client '%s' from slot '%i' ('%llu' exceeded string command quota!)\n", - pClient_Adj->GetNetChan()->GetAddress(), pClient_Adj->GetUserID(), pClient->GetNucleusID()); + pClient_Adj->GetNetChan()->GetAddress(), pClient_Adj->GetUserID(), pClient_Adj->GetNucleusID()); pClient_Adj->Disconnect(Reputation_t::REP_MARK_BAD, "#DISCONNECT_STRINGCMD_OVERFLOW"); return true;