@@ -72,7 +72,7 @@ namespace Content.Client.GameObjects.EntitySystems
|
|||||||
_tileData.Clear();
|
_tileData.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnGridRemoved(GridId gridId)
|
private void OnGridRemoved(MapId mapId, GridId gridId)
|
||||||
{
|
{
|
||||||
if (_tileData.ContainsKey(gridId))
|
if (_tileData.ContainsKey(gridId))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -131,7 +131,7 @@ namespace Content.Client.GameObjects.EntitySystems
|
|||||||
overlayManager.RemoveOverlay<GasTileOverlay>();
|
overlayManager.RemoveOverlay<GasTileOverlay>();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnGridRemoved(GridId gridId)
|
private void OnGridRemoved(MapId mapId, GridId gridId)
|
||||||
{
|
{
|
||||||
if (_tileData.ContainsKey(gridId))
|
if (_tileData.ContainsKey(gridId))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ namespace Content.Server.GameObjects.EntitySystems.AI.Pathfinding.Accessible
|
|||||||
_mapManager.OnGridRemoved += GridRemoved;
|
_mapManager.OnGridRemoved += GridRemoved;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void GridRemoved(GridId gridId)
|
private void GridRemoved(MapId mapId, GridId gridId)
|
||||||
{
|
{
|
||||||
_regions.Remove(gridId);
|
_regions.Remove(gridId);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -229,7 +229,7 @@ namespace Content.Server.GameObjects.EntitySystems.AI.Pathfinding
|
|||||||
node.UpdateTile(tile);
|
node.UpdateTile(tile);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HandleGridRemoval(GridId gridId)
|
private void HandleGridRemoval(MapId mapId, GridId gridId)
|
||||||
{
|
{
|
||||||
if (_graph.ContainsKey(gridId))
|
if (_graph.ContainsKey(gridId))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -107,7 +107,7 @@ namespace Content.Server.GameObjects.EntitySystems.Atmos
|
|||||||
return chunk;
|
return chunk;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnGridRemoved(GridId gridId)
|
private void OnGridRemoved(MapId mapId, GridId gridId)
|
||||||
{
|
{
|
||||||
if (_overlay.ContainsKey(gridId))
|
if (_overlay.ContainsKey(gridId))
|
||||||
{
|
{
|
||||||
|
|||||||
Submodule RobustToolbox updated: 8e0f227940...6cf5fdc5d6
Reference in New Issue
Block a user