Skip to content

Commit

Permalink
Contract freeze fix
Browse files Browse the repository at this point in the history
GetSeedsInBounds would return all seeds of overlapping cells instead of all seeds in bounds
  • Loading branch information
thorwin99 committed Feb 27, 2023
1 parent a978438 commit 7075ddd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ public void GetSeedsInBounds(BoundingSphereD bounds, List<MyObjectSeed> list)
{
if (m_loadedCells.ContainsKey(cellId))
{
m_loadedCells[cellId].GetAll(list, false);
m_loadedCells[cellId].OverlapAllBoundingSphere(ref bounds, list, false);
}
else
{
MyProceduralCell cell = GenerateCellSeeds(cellId);
cell.GetAll(list, false);
cell.OverlapAllBoundingSphere(ref bounds, list, false);
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions SEWorldGenPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.6.8")]
[assembly: AssemblyFileVersion("2.1.6.8")]
[assembly: AssemblyVersion("2.1.6.9")]
[assembly: AssemblyFileVersion("2.1.6.9")]

0 comments on commit 7075ddd

Please sign in to comment.