Remove Explicit GridId References (#8315)

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
Acruid
2022-06-11 18:54:41 -07:00
committed by GitHub
parent 846321cebb
commit 4f9be42f40
131 changed files with 531 additions and 588 deletions

View File

@@ -41,7 +41,7 @@ public sealed class ExplosionGridTileFlood : ExplosionTileFlood
float intensityStepSize,
int typeIndex,
Dictionary<Vector2i, NeighborFlag> edgeTiles,
GridId? referenceGrid,
EntityUid? referenceGrid,
Matrix3 spaceMatrix,
Angle spaceAngle)
{
@@ -63,7 +63,7 @@ public sealed class ExplosionGridTileFlood : ExplosionTileFlood
}
}
if (referenceGrid == Grid.Index)
if (referenceGrid == Grid.GridEntityId)
return;
_needToTransform = true;