Program: Revert adding override phases to the output BYAML

This is causing Splatoon to crash. Not sure why at this point, but this data is not important, so let's get rid of it for now.
This commit is contained in:
OatmealDome 2024-08-11 16:32:54 -04:00
parent e6b73be0b2
commit c68a64f2b5

View File

@ -308,13 +308,7 @@ void Run(InvocationContext context)
{ "BaseByamlStartTime", baseTime.ToString("O") },
{ "PhaseLength", phaseLength },
{ "ScheduleLength", scheduleLength },
{ "RandomSeed", seed.ToString() },
{
"OverridePhases",
overridePhases.Select(p =>
new KeyValuePair<string, dynamic>(p.Key.ToString("O"), p.Value.ToByamlCompatibleFormat()))
.ToDictionary()
}
{ "RandomSeed", seed.ToString() }
};
ByamlFile.Save(outputByamlPath, lastByaml, new ByamlSerializerSettings()