Skip to content

Commit

Permalink
Fixed a bug where for MCTs exported from Midas that had no spaces (no…
Browse files Browse the repository at this point in the history
…t the case when pushed from the BHoM)
  • Loading branch information
peterjamesnugent authored and Fraser Greenroyd committed Aug 18, 2023
1 parent af6cdbe commit 5d4e1d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MidasCivil_Adapter/PrivateHelpers/GetBarReleaseAssignments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ private Dictionary<string, List<int>> GetBarReleaseAssignments(string section, s
Where(x => !string.IsNullOrEmpty(x)).
ToList();
}
else
{
geometryAssignments.Add(splitSection.Trim());
}

List<int> propertyAssignment = MidasCivilAdapter.GetAssignmentIds(geometryAssignments);

Expand Down

0 comments on commit 5d4e1d3

Please sign in to comment.