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

@@ -10,7 +10,7 @@ namespace Content.Shared.Atmos
/// <summary>
/// Grid for this chunk
/// </summary>
public GridId GridIndices { get; }
public EntityUid GridIndices { get; }
/// <summary>
/// Origin of this chunk
@@ -21,7 +21,7 @@ namespace Content.Shared.Atmos
public GameTick LastUpdate { get; private set; }
public GasOverlayChunk(GridId gridIndices, Vector2i vector2i)
public GasOverlayChunk(EntityUid gridIndices, Vector2i vector2i)
{
GridIndices = gridIndices;
Vector2i = vector2i;