Filter out white space for reload key parsing

This commit is contained in:
sardelka9515
2022-09-08 12:59:14 -07:00
parent ba8d525ddf
commit c4b321324e

View File

@ -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];