From c4b321324ef1e99dbbf6c184cc007b2a302fea3b Mon Sep 17 00:00:00 2001 From: sardelka9515 Date: Thu, 8 Sep 2022 12:59:14 -0700 Subject: [PATCH] Filter out white space for reload key parsing --- RageCoop.Client/Util/Util.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/RageCoop.Client/Util/Util.cs b/RageCoop.Client/Util/Util.cs index fd6cdb6..a386c5d 100644 --- a/RageCoop.Client/Util/Util.cs +++ b/RageCoop.Client/Util/Util.cs @@ -235,6 +235,7 @@ namespace RageCoop.Client foreach (var l in lines) { var ss = l.Split('='); + ss.ForEach(s => s.Replace(" ", "")); if (ss.Length > 0 && ss[0] == "ReloadKey") { reloadKey = ss[1];