diff --git a/Content.Server/GameObjects/EntitySystems/AI/Pathfinding/PathfindingChunk.cs b/Content.Server/GameObjects/EntitySystems/AI/Pathfinding/PathfindingChunk.cs index 90af19c821..56c25d4670 100644 --- a/Content.Server/GameObjects/EntitySystems/AI/Pathfinding/PathfindingChunk.cs +++ b/Content.Server/GameObjects/EntitySystems/AI/Pathfinding/PathfindingChunk.cs @@ -156,12 +156,6 @@ namespace Content.Server.GameObjects.EntitySystems.AI.Pathfinding return _nodes[chunkX, chunkY]; } - public void UpdateNode(TileRef tile) - { - var node = GetNode(tile); - node.UpdateTile(tile); - } - private void CreateNode(TileRef tile, PathfindingChunk parent = null) { if (parent == null)