From 9a9d6b290ae21384801a6ea650017afa52951f92 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 8 Aug 2023 19:05:12 +0200 Subject: [PATCH] Fix typo --- 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 85315e74..4f70789d 100644 --- a/r5dev/engine/client/client.cpp +++ b/r5dev/engine/client/client.cpp @@ -182,7 +182,7 @@ bool CClient::VProcessStringCmd(CClient* pClient, NET_StringCmd* pMsg) // The internal function discards the command if it's null. if (pCmd) { - // If the string length exceeds 128, the will engine return a 'command + // If the string length exceeds 128, the engine will return a 'command // string too long' message back to the client that issued it and // subsequently jettison the string cmd. Before this routine gets hit, // the entire string gets parsed (up to 512 bytes). There is an issue