Fix RCS1190

This commit is contained in:
RoosterDragon
2023-03-18 13:06:42 +00:00
committed by Gustas
parent 258de7a6fd
commit cf255fc78e
2 changed files with 5 additions and 2 deletions

View File

@@ -37,8 +37,8 @@ namespace OpenRA
return;
foreach (var f in GetType().GetFields())
if (args.Contains("Launch" + "." + f.Name))
FieldLoader.LoadField(this, f.Name, args.GetValue("Launch" + "." + f.Name, ""));
if (args.Contains("Launch." + f.Name))
FieldLoader.LoadField(this, f.Name, args.GetValue("Launch." + f.Name, ""));
}
public ConnectionTarget GetConnectEndPoint()