Skip to content

Commit

Permalink
Fix airlaunch costs not getting reflected in budget calcs
Browse files Browse the repository at this point in the history
  • Loading branch information
siimav committed Jun 28, 2024
1 parent 9326e9e commit cb960f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/RP0/SpaceCenter/SpaceCenterManagement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ public double GetRolloutCostOverTime(double time)
public double GetRolloutCostOverTime(double time, LCSpaceCenter ksc)
{
double delta = 0;
for (int i = 1; i < ksc.LaunchComplexes.Count; ++i)
for (int i = 0; i < ksc.LaunchComplexes.Count; ++i)
delta += GetRolloutCostOverTime(time, ksc.LaunchComplexes[i]);

return delta;
Expand Down

0 comments on commit cb960f8

Please sign in to comment.