From 525999be40d55eaf24f6fcc2f5382e80b6ce6fa8 Mon Sep 17 00:00:00 2001
From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com>
Date: Fri, 11 Nov 2022 01:19:49 +0100
Subject: [PATCH] Trim value from ConVar among with the delimiter

Trim anything past the space/semicolon character as well, this is required for CCvar::FindVar(...).
---
 r5dev/gameui/IConsole.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/r5dev/gameui/IConsole.cpp b/r5dev/gameui/IConsole.cpp
index bce8839d..d41da269 100644
--- a/r5dev/gameui/IConsole.cpp
+++ b/r5dev/gameui/IConsole.cpp
@@ -591,7 +591,7 @@ void CConsole::BuildSummary(string svConVar)
     if (!svConVar.empty())
     {
         // Remove trailing space and/or semicolon before we call 'g_pCVar->FindVar(..)'.
-        StringRTrim(svConVar, " ;");
+        StringRTrim(svConVar, " ;", true);
 
         if (const ConVar* pConVar = g_pCVar->FindVar(svConVar.c_str()))
         {